Blame 0028-kernel-modules-join-instmods-and-install-all-usb-sto.patch

Harald Hoyer b38677
From 6bc2096cf58c4b52f23ecc1bf8dc301d6122dfb5 Mon Sep 17 00:00:00 2001
Harald Hoyer b38677
From: Harald Hoyer <harald@redhat.com>
Harald Hoyer b38677
Date: Tue, 26 Jan 2016 14:59:28 +0100
Harald Hoyer b38677
Subject: [PATCH] kernel-modules: join instmods and install all usb/storage
Harald Hoyer b38677
Harald Hoyer b38677
---
Harald Hoyer b38677
 modules.d/90kernel-modules/module-setup.sh | 18 ++++++++----------
Harald Hoyer b38677
 1 file changed, 8 insertions(+), 10 deletions(-)
Harald Hoyer b38677
Harald Hoyer b38677
diff --git a/modules.d/90kernel-modules/module-setup.sh b/modules.d/90kernel-modules/module-setup.sh
Harald Hoyer b38677
index 13f48c9..300adc7 100755
Harald Hoyer b38677
--- a/modules.d/90kernel-modules/module-setup.sh
Harald Hoyer b38677
+++ b/modules.d/90kernel-modules/module-setup.sh
Harald Hoyer b38677
@@ -39,16 +39,17 @@ installkernel() {
Harald Hoyer b38677
             ehci-hcd ehci-pci ehci-platform \
Harald Hoyer b38677
             ohci-hcd ohci-pci \
Harald Hoyer b38677
             uhci-hcd \
Harald Hoyer b38677
-            xhci-hcd xhci-pci xhci-plat-hcd
Harald Hoyer b38677
-
Harald Hoyer b38677
-        hostonly='' instmods \
Harald Hoyer b38677
+            xhci-hcd xhci-pci xhci-plat-hcd \
Harald Hoyer b38677
             "=drivers/hid" \
Harald Hoyer b38677
             "=drivers/input/serio" \
Harald Hoyer b38677
-            "=drivers/input/keyboard"
Harald Hoyer b38677
+            "=drivers/input/keyboard" \
Harald Hoyer b38677
+            "=drivers/usb/storage"
Harald Hoyer b38677
 
Harald Hoyer b38677
-        instmods yenta_socket scsi_dh_rdac scsi_dh_emc scsi_dh_alua \
Harald Hoyer b38677
-                 atkbd i8042 usbhid firewire-ohci pcmcia hv-vmbus \
Harald Hoyer b38677
-                 usb-storage
Harald Hoyer b38677
+        instmods \
Harald Hoyer b38677
+            yenta_socket scsi_dh_rdac scsi_dh_emc scsi_dh_alua \
Harald Hoyer b38677
+            atkbd i8042 usbhid firewire-ohci pcmcia hv-vmbus \
Harald Hoyer b38677
+            virtio virtio_blk virtio_ring virtio_pci virtio_scsi \
Harald Hoyer b38677
+            "=drivers/pcmcia" =ide
Harald Hoyer b38677
 
Harald Hoyer b38677
         if [[ "$(uname -p)" == arm* ]]; then
Harald Hoyer b38677
             # arm specific modules
Harald Hoyer b38677
@@ -61,9 +62,6 @@ installkernel() {
Harald Hoyer b38677
                 ${NULL}
Harald Hoyer b38677
         fi
Harald Hoyer b38677
 
Harald Hoyer b38677
-        # install virtual machine support
Harald Hoyer b38677
-        instmods virtio virtio_blk virtio_ring virtio_pci virtio_scsi \
Harald Hoyer b38677
-            "=drivers/pcmcia" =ide "=drivers/usb/storage"
Harald Hoyer b38677
 
Harald Hoyer b38677
         find_kernel_modules  |  block_module_filter  |  instmods
Harald Hoyer b38677