X-Git-Url: http://git.openwrt.org/?a=blobdiff_plain;ds=sidebyside;f=target%2Flinux%2Frb532-2.6%2Fbase-files%2Fsbin%2Fcf2nand;fp=target%2Flinux%2Frb532-2.6%2Fbase-files%2Fsbin%2Fcf2nand;h=169f7eb8d5903888d9d7792c191b1f71104ac40f;hb=3987f5727cfd270b2762703250000207b9b5362c;hp=3f3352fd1b566503215f6a283ced1dd22cefb664;hpb=76c376d82a9bb487024875ad8a9985b078428ca0;p=openwrt%2Fopenwrt.git 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;;