diff options
author | Marco Bonetti <sid77@slackware.it> | 2010-08-14 15:52:15 -0400 |
---|---|---|
committer | dsomero <xgizzmo@slackbuilds.org> | 2010-08-14 15:52:15 -0400 |
commit | c7088581e930a8229279e1428fc683a03ce972f5 (patch) | |
tree | 841a5d307661ec44d5ff283822303983e24b6ef8 /system/ipheth-driver/doinst.sh | |
parent | 6e01e00a8ac3b0985849bdedfa052d59f5c536f4 (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.sh | 16 |
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@ |