X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/440a0b6f4ad94c56cadaf9d45ab79f62ebbe7f3d..5392583e7d1f7b372ede703dcd169792d2262f4b:/target/linux/rb532-2.6/base-files/sbin/cf2nand diff --git a/target/linux/rb532-2.6/base-files/sbin/cf2nand b/target/linux/rb532-2.6/base-files/sbin/cf2nand index 3f3352fd1..169f7eb8d 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;;