diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2007-09-29 14:27:54 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2007-09-29 14:27:54 +0000 |
commit | 438dfe5c6fbfa63f5841fda9b4ec44b2f7712674 (patch) | |
tree | 35defc07076a1deea87ff74b8ee97cd891494183 /target/linux/ar7/base-files/etc/init.d | |
parent | 2068b8d48de6b07bf656613fb1e25850483d5c67 (diff) | |
download | upstream-438dfe5c6fbfa63f5841fda9b4ec44b2f7712674.tar.gz upstream-438dfe5c6fbfa63f5841fda9b4ec44b2f7712674.tar.bz2 upstream-438dfe5c6fbfa63f5841fda9b4ec44b2f7712674.zip |
get rid of per-profile base-files
SVN-Revision: 9069
Diffstat (limited to 'target/linux/ar7/base-files/etc/init.d')
-rwxr-xr-x | target/linux/ar7/base-files/etc/init.d/adam2 | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/target/linux/ar7/base-files/etc/init.d/adam2 b/target/linux/ar7/base-files/etc/init.d/adam2 new file mode 100755 index 0000000000..6b786270ea --- /dev/null +++ b/target/linux/ar7/base-files/etc/init.d/adam2 @@ -0,0 +1,13 @@ +#!/bin/sh /etc/rc.common +# ADAM2 patcher for Netgear DG834 and compatible +# Copyright (C) 2006 OpenWrt.org + +START=00 +start() { + MD5="$(md5sum /dev/mtdblock0 | awk '{print $1}')" + [ "$MD5" = "0530bfdf00ec155f4182afd70da028c1" ] && { + mtd unlock adam2 + /sbin/adam2patcher /dev/mtdblock0 + } + rm -f /etc/rc.d/S${START}adam2 /etc/init.d/adam2 /sbin/adam2patcher >&- 2>&- +} |