From: Felix Fietkau Date: Sun, 4 Feb 2007 23:18:47 +0000 (+0000) Subject: oops... typo X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=202bd45033084214d6f95a4a25a7f6eb3ab176f3;p=openwrt%2Fstaging%2Frmilecki.git oops... typo SVN-Revision: 6267 --- diff --git a/target/linux/rb532-2.6/base-files/sbin/cf2nand b/target/linux/rb532-2.6/base-files/sbin/cf2nand index 169f7eb8d59..9cb216ca82e 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 '$1 != "rootfs" {print $5}')" +fstype="$(mount | grep ' / ' | awk '$5 != "rootfs" {print $5}')" case "$fstype" in ext2|jffs2) echo "Copying from $fstype to yaffs2";; *) echo "Invalid filesystem."; exit 1;;