aboutsummaryrefslogtreecommitdiffstats
path: root/r8125/doinst.sh
diff options
context:
space:
mode:
authorDanilo M. <danix@danix.xyz>2026-05-04 12:05:41 +0200
committerDanilo M. <danix@danix.xyz>2026-05-04 12:05:41 +0200
commit9365a79bec44ebc23d5f5a4ab337644aa65b2637 (patch)
tree8dafac1703d1cf764934701810e28d87f58911f7 /r8125/doinst.sh
parent9f05b295a76f83748819c98209d2e2c641e5254a (diff)
downloadmy-slackbuilds-9365a79bec44ebc23d5f5a4ab337644aa65b2637.tar.gz
my-slackbuilds-9365a79bec44ebc23d5f5a4ab337644aa65b2637.zip
Removed r8125 package as it is now part of SlackBuilds.org
Diffstat (limited to 'r8125/doinst.sh')
-rw-r--r--r8125/doinst.sh16
1 files changed, 0 insertions, 16 deletions
diff --git a/r8125/doinst.sh b/r8125/doinst.sh
deleted file mode 100644
index cfc59d8..0000000
--- a/r8125/doinst.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-config() {
- NEW="$1"
- OLD="$(dirname $NEW)/$(basename $NEW .new)"
- if [ ! -r $OLD ]; then
- mv $NEW $OLD
- elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
- rm $NEW
- fi
-}
-
-config etc/modprobe.d/r8169_blacklist.conf.new
-
-# A good idea whenever kernel modules are added or changed:
-if [ -x sbin/depmod ]; then
- chroot . /sbin/depmod -a @KERNEL@ 1> /dev/null 2> /dev/null
-fi