aboutsummaryrefslogtreecommitdiff
path: root/system/ipheth-driver/doinst.sh
diff options
context:
space:
mode:
authorMarco Bonetti <sid77@slackware.it>2010-08-14 15:52:15 -0400
committerdsomero <xgizzmo@slackbuilds.org>2010-08-14 15:52:15 -0400
commitc7088581e930a8229279e1428fc683a03ce972f5 (patch)
tree841a5d307661ec44d5ff283822303983e24b6ef8 /system/ipheth-driver/doinst.sh
parent6e01e00a8ac3b0985849bdedfa052d59f5c536f4 (diff)
system/ipheth-driver: Added (iPhone USB Ethernet Driver)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/ipheth-driver/doinst.sh')
-rw-r--r--system/ipheth-driver/doinst.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/system/ipheth-driver/doinst.sh b/system/ipheth-driver/doinst.sh
new file mode 100644
index 0000000000000..c57f522a1a9fb
--- /dev/null
+++ b/system/ipheth-driver/doinst.sh
@@ -0,0 +1,16 @@
+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/modprobe.d/ipheth.conf.new
+
+chroot . /sbin/depmod -a @KERNEL@