slackbuilds_ponce/network/rt5370/doinst.sh
Roberto Neri 71040f50ae network/rt5370: Added (driver for Ralink RT5370 USB WLAN Card)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
2012-07-30 01:20:13 -05:00

19 lines
491 B
Bash

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