diff options
author | Mark H Weaver <mhw@netris.org> | 2015-08-27 18:37:30 -0400 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-10-27 21:44:46 +0100 |
commit | 9f4a2496117aa17c6badcead56aa6efce6a97cbd (patch) | |
tree | 99797fe0da3e1c92e8feb20d9dbf314c50d53520 /gnu/system | |
parent | 6b173ac0041539989f1c892b35ea8817fda18ad4 (diff) | |
download | guix-9f4a2496117aa17c6badcead56aa6efce6a97cbd.tar guix-9f4a2496117aa17c6badcead56aa6efce6a97cbd.tar.gz |
linux-initrd: Use pata_acpi, pata_atiixp, and isci modules only on Intel.
* gnu/system/linux-initrd.scm (base-initrd)[linux-modules]: Include
"pata_acpi", "pata_atiixp", and "isci" on Intel systems only.
Diffstat (limited to 'gnu/system')
-rw-r--r-- | gnu/system/linux-initrd.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/system/linux-initrd.scm b/gnu/system/linux-initrd.scm index 519373fe34..6130e020c8 100644 --- a/gnu/system/linux-initrd.scm +++ b/gnu/system/linux-initrd.scm @@ -178,11 +178,13 @@ loaded at boot time in the order in which they appear." (define linux-modules ;; Modules added to the initrd and loaded from the initrd. `("ahci" ;for SATA controllers - "pata_acpi" "pata_atiixp" ;for ATA controllers - "isci" ;for SAS controllers like Intel C602 "usb-storage" "uas" ;for the installation image etc. "usbkbd" "usbhid" ;USB keyboards, for debugging "dm-crypt" "xts" ;for encrypted root partitions + ,@(if (string-match "^(x86_64|i[3-6]86)-" (%current-system)) + '("pata_acpi" "pata_atiixp" ;for ATA controllers + "isci") ;for SAS controllers like Intel C602 + '()) ,@(if (or virtio? qemu-networking?) virtio-modules '()) |