diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-02-04 23:18:22 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-02-04 23:18:22 +0000 |
commit | 3987f5727cfd270b2762703250000207b9b5362c (patch) | |
tree | acb2dad4f2239ff69e1a18b9a1ef26572139ea0c /target/linux | |
parent | 76c376d82a9bb487024875ad8a9985b078428ca0 (diff) | |
download | upstream-3987f5727cfd270b2762703250000207b9b5362c.tar.gz upstream-3987f5727cfd270b2762703250000207b9b5362c.tar.bz2 upstream-3987f5727cfd270b2762703250000207b9b5362c.zip |
fix rootfs detection
SVN-Revision: 6266
Diffstat (limited to 'target/linux')
-rwxr-xr-x | target/linux/rb532-2.6/base-files/sbin/cf2nand | 2 |
1 files changed, 1 insertions, 1 deletions
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;; |