From f0eed65a8edc7b6af54de599630bb0ae5a566b17 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Thu, 16 Jun 2022 17:17:42 +0200 Subject: [PATCH] r8169: remove presumably obsolete and unclear if working system-sleep workaround for r8169 --- Makefile | 4 ---- etc/system-sleep/r8169 | 9 --------- 2 files changed, 13 deletions(-) delete mode 100755 etc/system-sleep/r8169 diff --git a/Makefile b/Makefile index 95a7743..ac8764d 100644 --- a/Makefile +++ b/Makefile @@ -64,8 +64,6 @@ xdg_appsdir = ${datadir}/applications xdg_directorydir = ${datadir}/desktop-directories xdg_menudir = ${sysconfdir}/xdg/menus xdg_mergedmenudir = $(xdg_menudir)/applications-merged -systemdsystemdir = /lib/systemd/system -systemdsleepdir = /lib/systemd/system-sleep distrorootdir = ${datadir}/$(DISTROid) distrobindir = ${distrorootdir}/bin @@ -147,13 +145,11 @@ install-kde-distro-addons: dist-update @$(INSTALL_DIR) $(DESTDIR)$(sbindir) @$(INSTALL_DIR) $(DESTDIR)$(distrobindir) @$(INSTALL_DIR) $(DESTDIR)$(mambaimagesdir) - @$(INSTALL_DIR) $(DESTDIR)$(systemdsleepdir) cp -r etc/polkit-1 $(DESTDIR)$(sysconfdir)/ cp -r etc/prelink.conf.d $(DESTDIR)$(sysconfdir)/ cp -r etc/profile.d $(DESTDIR)$(sysconfdir)/ cp -r etc/sudoers.d $(DESTDIR)$(sysconfdir)/ cp -r etc/sysconfig $(DESTDIR)$(sysconfdir)/ - cp etc/system-sleep/* $(DESTDIR)$(systemdsleepdir)/ cp -r menu/icons/ $(DESTDIR)$(datadir)/icons/ install-distromenu: dist-update diff --git a/etc/system-sleep/r8169 b/etc/system-sleep/r8169 deleted file mode 100755 index 10327cb..0000000 --- a/etc/system-sleep/r8169 +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash -TMPFILE=/tmp/system-sleep-hook-r8169.tmp -if [ "$1/$2" = "pre/suspend" ]; then - rmmod r8169 - touch $TMPFILE -elif [ "$1/$2" = "post/suspend" -a -e $TMPFILE ]; then - modprobe r8169 - rm -f $TMPFILE -fi