diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-04-07 09:50:11 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-04-07 09:50:11 +0000 |
commit | 9e3ce3f75f2263d61f1af97e9918f4f7af7cb052 (patch) | |
tree | 8a6cbe656d2953280ec0ed59a896d8c0c07a57f4 /package/base-files/files/lib | |
parent | 4a736626c1e5e37e34f775298c4df82376e87ff8 (diff) | |
download | upstream-9e3ce3f75f2263d61f1af97e9918f4f7af7cb052.tar.gz upstream-9e3ce3f75f2263d61f1af97e9918f4f7af7cb052.tar.bz2 upstream-9e3ce3f75f2263d61f1af97e9918f4f7af7cb052.zip |
/lib/functions.sh: remove jffs2_ready()
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@40402 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/files/lib')
-rwxr-xr-x | package/base-files/files/lib/functions.sh | 7 |
1 files changed, 0 insertions, 7 deletions
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() { # <new_root> <old_root> /bin/mount -o noatime,move /proc $1/proc && \ pivot_root $1 $1$2 && { |