1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-13 10:49:13 +02:00

fix rootfs detection

SVN-Revision: 6266
This commit is contained in:
Felix Fietkau 2007-02-04 23:18:22 +00:00
parent 76c376d82a
commit 3987f5727c

View File

@ -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;;