diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-11-07 01:30:03 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-11-07 01:30:03 +0000 |
commit | dae1c2a36802930af19a28ac2515167817e6a190 (patch) | |
tree | 4ada7809d8b73f37cd50b9c6ac05d27b8e1fe15c /openwrt | |
parent | 5dfad9395848f74699752473b825635c30fb5567 (diff) |
disable squashfs auto-clean for non-broadcom stuff
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2365 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt')
-rwxr-xr-x | openwrt/package/base-files/default/sbin/mount_root | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/openwrt/package/base-files/default/sbin/mount_root b/openwrt/package/base-files/default/sbin/mount_root index c8edaaa2fa..c393e06f39 100755 --- 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 } |