From: Felix Fietkau Date: Sun, 4 Feb 2007 23:18:22 +0000 (+0000) Subject: fix rootfs detection X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=e075a8acbd3ab0fa12ccf00c059c2c3a11518d94;hp=4e62db451c15d944db6b21b0181f2d50947b1ad1 fix rootfs detection SVN-Revision: 6266 --- diff --git a/target/linux/rb532-2.6/base-files/sbin/cf2nand b/target/linux/rb532-2.6/base-files/sbin/cf2nand index 3f3352fd1b..169f7eb8d5 100755 --- a/target/linux/rb532-2.6/base-files/sbin/cf2nand +++ b/target/linux/rb532-2.6/base-files/sbin/cf2nand @@ -10,7 +10,7 @@ copy_kernel() { /sbin/patch-cmdline "$output" "$cmdline" } -fstype="$(mount | grep ' / ' | awk '{print $5}')" +fstype="$(mount | grep ' / ' | awk '$1 != "rootfs" {print $5}')" case "$fstype" in ext2|jffs2) echo "Copying from $fstype to yaffs2";; *) echo "Invalid filesystem."; exit 1;;