Преглед изворни кода

fix rootfs detection

SVN-Revision: 6266
Felix Fietkau пре 19 година
родитељ
комит
3987f5727c
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      target/linux/rb532-2.6/base-files/sbin/cf2nand

+ 1 - 1
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;;