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 | 0c022f402672266ad547f479aeeca0b75723c86a (patch) | |
tree | fbe71381b34fa69fd95cbc9ed3ffd60f4180cfbb /target/linux/rb532-2.6 | |
parent | e29baf712b415f35302a4dc0bd63165616da2632 (diff) | |
download | upstream-0c022f402672266ad547f479aeeca0b75723c86a.tar.gz upstream-0c022f402672266ad547f479aeeca0b75723c86a.tar.bz2 upstream-0c022f402672266ad547f479aeeca0b75723c86a.zip |
fix rootfs detection
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6266 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/rb532-2.6')
-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;; |