1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-12-25 10:57:23 +02:00

fix rootfs detection

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6266 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2007-02-04 23:18:22 +00:00
parent 63b12ffd1b
commit 5392583e7d

View File

@ -10,7 +10,7 @@ copy_kernel() {
/sbin/patch-cmdline "$output" "$cmdline" /sbin/patch-cmdline "$output" "$cmdline"
} }
fstype="$(mount | grep ' / ' | awk '{print $5}')" fstype="$(mount | grep ' / ' | awk '$1 != "rootfs" {print $5}')"
case "$fstype" in case "$fstype" in
ext2|jffs2) echo "Copying from $fstype to yaffs2";; ext2|jffs2) echo "Copying from $fstype to yaffs2";;
*) echo "Invalid filesystem."; exit 1;; *) echo "Invalid filesystem."; exit 1;;