summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2014-11-28 00:03:08 +0100
committerLudovic Courtès <ludo@gnu.org>2014-11-28 00:10:28 +0100
commitd7e66f629525a670d1f4751b26c3d2e8e088eeb2 (patch)
treec60c92bf09f16e10fd3d332fbd019869e5ec683c /gnu
parent0e704a2d4ea9b65cde79240f4433296645c5a220 (diff)
downloadpatches-d7e66f629525a670d1f4751b26c3d2e8e088eeb2.tar
patches-d7e66f629525a670d1f4751b26c3d2e8e088eeb2.tar.gz
linux-initrd: Remove now redundant module names.
* gnu/system/linux-initrd.scm (base-initrd)[virtio-modules]: Remove "virtio.ko" and "virtio_ring.ko". [virtio-9p-modules]: Remove "fscache.ko" and "9pnet.ko". [linux-modules]: Remove "libahci.ko".
Diffstat (limited to 'gnu')
-rw-r--r--gnu/system/linux-initrd.scm7
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/system/linux-initrd.scm b/gnu/system/linux-initrd.scm
index 8129f9017b..31a1c2e516 100644
--- a/gnu/system/linux-initrd.scm
+++ b/gnu/system/linux-initrd.scm
@@ -166,8 +166,7 @@ modules can be listed in EXTRA-MODULES. They will be added to the initrd, and
loaded at boot time in the order in which they appear."
(define virtio-modules
;; Modules for Linux para-virtualized devices, for use in QEMU guests.
- '("virtio.ko" "virtio_ring.ko" "virtio_pci.ko"
- "virtio_balloon.ko" "virtio_blk.ko" "virtio_net.ko"))
+ '("virtio_pci.ko" "virtio_balloon.ko" "virtio_blk.ko" "virtio_net.ko"))
(define cifs-modules
;; Modules needed to mount CIFS file systems.
@@ -175,7 +174,7 @@ loaded at boot time in the order in which they appear."
(define virtio-9p-modules
;; Modules for the 9p paravirtualized file system.
- '("fscache.ko" "9pnet.ko" "9p.ko" "9pnet_virtio.ko"))
+ '("9p.ko" "9pnet_virtio.ko"))
(define (file-system-type-predicate type)
(lambda (fs)
@@ -183,7 +182,7 @@ loaded at boot time in the order in which they appear."
(define linux-modules
;; Modules added to the initrd and loaded from the initrd.
- `("libahci.ko" "ahci.ko" ;for SATA controllers
+ `("ahci.ko" ;for SATA controllers
"pata_acpi.ko" "pata_atiixp.ko" ;for ATA controllers
,@(if (or virtio? qemu-networking?)
virtio-modules