summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>2017-02-03 16:15:23 +0100
committerDavid Seifert <soap@gentoo.org>2017-02-04 22:20:01 +0100
commit9aa93b592310fcd005faf4bb381924638bb9567e (patch)
tree6f8050aeeddc7ffd4bb3e7ed8e7b3994b1c987b3 /sys-apps/rescan-scsi-bus
parentsys-apps/mtree: remove unused patches (diff)
downloadgentoo-9aa93b592310fcd005faf4bb381924638bb9567e.tar.gz
gentoo-9aa93b592310fcd005faf4bb381924638bb9567e.tar.bz2
gentoo-9aa93b592310fcd005faf4bb381924638bb9567e.zip
sys-apps/rescan-scsi-bus: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/3791
Diffstat (limited to 'sys-apps/rescan-scsi-bus')
-rw-r--r--sys-apps/rescan-scsi-bus/files/rescan-scsi-bus-1.25-support-sysfs-only-systems.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/sys-apps/rescan-scsi-bus/files/rescan-scsi-bus-1.25-support-sysfs-only-systems.patch b/sys-apps/rescan-scsi-bus/files/rescan-scsi-bus-1.25-support-sysfs-only-systems.patch
deleted file mode 100644
index 7d890d0d5f66..000000000000
--- a/sys-apps/rescan-scsi-bus/files/rescan-scsi-bus-1.25-support-sysfs-only-systems.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- rescan-scsi-bus.sh.orig 2008-01-15 01:01:21.316547000 -0800
-+++ rescan-scsi-bus.sh 2008-01-15 01:02:02.704184735 -0800
-@@ -444,7 +444,10 @@
- echo $result
- }
-
--if test ! -d /proc/scsi/; then
-+# /proc/scsi may not exist in new 2.6 kernels without CONFIG_SCSI_PROC_FS
-+if test -d /proc/scsi/ || test -d /sys/bus/scsi/; then
-+ :
-+else
- echo "Error: SCSI subsystem not active"
- exit 1
- fi