]> git.ipfire.org Git - thirdparty/dracut.git/commitdiff
kernel-modules: increase SDHCI driver inclusion
authorDaniel Drake <drake@endlessm.com>
Thu, 15 Jan 2015 17:27:47 +0000 (11:27 -0600)
committerHarald Hoyer <harald@redhat.com>
Wed, 21 Jan 2015 13:10:26 +0000 (14:10 +0100)
The sdhci-pci module is currently not being included in the initramfs,
even though other sdhci modules are. This breaks boot on systems that
rely on this driver to access the root filesystem.

Instead of looking for modules that use sdhci_pltfm_init, look for
sdhci_add_host. I checked 3.18 kernel sources, and this change
does not remove any of the previously-matched SDHCI drivers.
It should result in the addition of sdhci-pci, sdhci-s3c, sdhci-spear
and sdhci-acpi.

modules.d/90kernel-modules/module-setup.sh

index 5e292b0c2babf1c1d7cedd96def22e1cc56e0a5c..a7b08536d36dc494d8cd9dd905eb80ea3b47a544 100755 (executable)
@@ -4,7 +4,7 @@
 installkernel() {
     if [[ -z $drivers ]]; then
         block_module_filter() {
-            local _blockfuncs='ahci_platform_get_resources|ata_scsi_ioctl|scsi_add_host|blk_cleanup_queue|register_mtd_blktrans|scsi_esp_register|register_virtio_device|usb_stor_disconnect|mmc_add_host|sdhci_pltfm_init'
+            local _blockfuncs='ahci_platform_get_resources|ata_scsi_ioctl|scsi_add_host|blk_cleanup_queue|register_mtd_blktrans|scsi_esp_register|register_virtio_device|usb_stor_disconnect|mmc_add_host|sdhci_add_host'
             # subfunctions inherit following FDs
             local _merge=8 _side2=9
             function bmf1() {