aboutsummaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2014-04-07 09:50:11 +0000
committerFelix Fietkau <nbd@openwrt.org>2014-04-07 09:50:11 +0000
commit9e3ce3f75f2263d61f1af97e9918f4f7af7cb052 (patch)
tree8a6cbe656d2953280ec0ed59a896d8c0c07a57f4 /package
parent4a736626c1e5e37e34f775298c4df82376e87ff8 (diff)
downloadmaster-187ad058-9e3ce3f75f2263d61f1af97e9918f4f7af7cb052.tar.gz
master-187ad058-9e3ce3f75f2263d61f1af97e9918f4f7af7cb052.tar.bz2
master-187ad058-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')
-rwxr-xr-xpackage/base-files/files/lib/functions.sh7
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 && {