[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
13/15: MIPS_ONLY: Don't try to copy modules that don't exist in the loon
From: |
Mark H. Weaver |
Subject: |
13/15: MIPS_ONLY: Don't try to copy modules that don't exist in the loongson2f kernel. |
Date: |
Thu, 20 Aug 2015 06:55:07 +0000 |
mhw pushed a commit to branch wip-loongson2f
in repository guix.
commit b6ae9fd10c56a03d36754e5173c4bbe5abef164e
Author: Mark H Weaver <address@hidden>
Date: Sun Aug 9 03:40:25 2015 -0400
MIPS_ONLY: Don't try to copy modules that don't exist in the loongson2f
kernel.
---
gnu/system/linux-initrd.scm | 13 +++++++------
1 files changed, 7 insertions(+), 6 deletions(-)
diff --git a/gnu/system/linux-initrd.scm b/gnu/system/linux-initrd.scm
index 48b855b..a61a6b6 100644
--- a/gnu/system/linux-initrd.scm
+++ b/gnu/system/linux-initrd.scm
@@ -161,7 +161,8 @@ 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_pci" "virtio_balloon" "virtio_blk" "virtio_net"
- "virtio_console"))
+ #;"virtio_console"
+ ))
(define cifs-modules
;; Modules needed to mount CIFS file systems.
@@ -177,11 +178,11 @@ 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
+ `(;"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
,@(if (or virtio? qemu-networking?)
virtio-modules
'())
- branch wip-loongson2f created (now efd15f9), Mark H. Weaver, 2015/08/20
- 08/15: system: grub: On MIPS, the linux image name is vmlinuz, not bzImage., Mark H. Weaver, 2015/08/20
- 01/15: gnu: linux-libre: Add case for ARCH=mips., Mark H. Weaver, 2015/08/20
- 05/15: gnu: grub: Update to 2.02-beta2-500-gba218c1., Mark H. Weaver, 2015/08/20
- 03/15: gnu: grub: Use modify-phases and other minor cleanups., Mark H. Weaver, 2015/08/20
- 02/15: gnu: Add linux-libre-loongson2f., Mark H. Weaver, 2015/08/20
- 06/15: gnu: grub: Install documentation., Mark H. Weaver, 2015/08/20
- 04/15: gnu: grub: Add comment noting that 'fuse' would be a desirable input., Mark H. Weaver, 2015/08/20
- 14/15: MIPS_ONLY: services: xorg: Remove several drivers (for Yeeloong)., Mark H. Weaver, 2015/08/20
- 13/15: MIPS_ONLY: Don't try to copy modules that don't exist in the loongson2f kernel.,
Mark H. Weaver <=
- 07/15: gnu: grub: Add support for Loongson-based machines., Mark H. Weaver, 2015/08/20
- 11/15: gnu: gst-plugins-base: Disable tests on MIPS and ARM., Mark H. Weaver, 2015/08/20
- 10/15: system: grub: Adjust eye-candy to work on non-Intel systems., Mark H. Weaver, 2015/08/20
- 15/15: MIPS_ONLY: file-systems: Remove hugetlb cgroup filesystem., Mark H. Weaver, 2015/08/20
- 12/15: PRELIMINARY: Fix problem with 'guix system init --nogrub'., Mark H. Weaver, 2015/08/20
- 09/15: system: grub: Convert grub background using rsvg-convert, not inkscape., Mark H. Weaver, 2015/08/20