diff options
Diffstat (limited to 'network/rt5370/doinst.sh')
-rw-r--r-- | network/rt5370/doinst.sh | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/network/rt5370/doinst.sh b/network/rt5370/doinst.sh deleted file mode 100644 index c3cac0de85eb..000000000000 --- a/network/rt5370/doinst.sh +++ /dev/null @@ -1,19 +0,0 @@ -config() { - NEW="$1" - OLD="$(dirname $NEW)/$(basename $NEW .new)" - # If there's no config file by that name, mv it over: - if [ ! -r $OLD ]; then - mv $NEW $OLD - elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then - # toss the redundant copy - rm $NEW - fi - # Otherwise, we leave the .new copy for the admin to consider... -} - -config etc/Wireless/RT2870STA/RT2870STA.dat.new - -if [ -x sbin/depmod ]; then - chroot . /sbin/depmod -a @KERNEL@ 1> /dev/null 2> /dev/null -fi - |