From: nbd Date: Mon, 7 Apr 2014 09:50:11 +0000 (+0000) Subject: /lib/functions.sh: remove jffs2_ready() X-Git-Url: https://git.archive.openwrt.org/?a=commitdiff_plain;h=3489fabdc6eeea2a276a2a1fb05b9baf4d8de275;p=openwrt.git /lib/functions.sh: remove jffs2_ready() Signed-off-by: Felix Fietkau git-svn-id: svn://svn.openwrt.org/openwrt/trunk@40402 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/base-files/files/lib/functions.sh b/package/base-files/files/lib/functions.sh index 31df7f7764..e05108c765 100755 --- a/package/base-files/files/lib/functions.sh +++ b/package/base-files/files/lib/functions.sh @@ -533,13 +533,6 @@ boot_run_hook() { done } -jffs2_ready() { - mtdpart="$(find_mtd_part rootfs_data)" - [ -z "$mtdpart" ] && return 1 - magic=$(hexdump $mtdpart -n 4 -e '4/1 "%02x"') - [ "$magic" != "deadc0de" ] -} - pivot() { # /bin/mount -o noatime,move /proc $1/proc && \ pivot_root $1 $1$2 && {