projects
/
openwrt
/
staging
/
zorun.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2e8e510
)
disable squashfs auto-clean for non-broadcom stuff
author
Felix Fietkau
<nbd@openwrt.org>
Mon, 7 Nov 2005 01:30:03 +0000
(
01:30
+0000)
committer
Felix Fietkau
<nbd@openwrt.org>
Mon, 7 Nov 2005 01:30:03 +0000
(
01:30
+0000)
SVN-Revision: 2365
openwrt/package/base-files/default/sbin/mount_root
patch
|
blob
|
history
diff --git
a/openwrt/package/base-files/default/sbin/mount_root
b/openwrt/package/base-files/default/sbin/mount_root
index c8edaaa2fa1e913812b9fcc30a07c85473257dbd..c393e06f39c11ee71896f54f51fa69ec54b6f197 100755
(executable)
--- a/
openwrt/package/base-files/default/sbin/mount_root
+++ b/
openwrt/package/base-files/default/sbin/mount_root
@@
-1,6
+1,7
@@
#!/bin/sh
. /etc/nvram.sh
is_clean() {
+ grep Broadcom /proc/cpuinfo 2>&- >&- || return 0
OFFSET="$((0x$(dd if=/dev/mtdblock/1 bs=1 skip=$((0x14)) count=2 2>&- | hexdump | grep 0000000 | cut -d ' ' -f 2) - 1))"
dd if=/dev/mtdblock/1 bs=1 skip=$OFFSET count=1 2>&- | hexdump -v | grep ' 0000' > /dev/null && return 255 || return 0
}