From mboxrd@z Thu Jan 1 00:00:00 1970 From: Danny Milosavljevic Subject: [PATCH] linux-initrd: Add ATA and SAS modules to the default set of modules. Date: Thu, 22 Feb 2018 22:50:04 +0100 Message-ID: <20180222215004.4686-1-dannym@scratchpost.org> References: <20180222223403.1c3773a5@scratchpost.org> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36978) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eoyko-0007Ob-Ah for guix-devel@gnu.org; Thu, 22 Feb 2018 16:50:15 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eoykl-0006Xb-8T for guix-devel@gnu.org; Thu, 22 Feb 2018 16:50:14 -0500 Received: from dd26836.kasserver.com ([85.13.145.193]:42976) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eoykl-0006VO-0d for guix-devel@gnu.org; Thu, 22 Feb 2018 16:50:11 -0500 In-Reply-To: <20180222223403.1c3773a5@scratchpost.org> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/system/linux-initrd.scm (base-initrd)[linux-modules]: Add "pata_via", "sata_via", "megaraid_sas", "libsas", "scsi_transport_sas", "mptbase", "mptsas", "mptscsih". --- gnu/system/linux-initrd.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/system/linux-initrd.scm b/gnu/system/linux-initrd.scm index 330438bce..7170d1c0e 100644 --- a/gnu/system/linux-initrd.scm +++ b/gnu/system/linux-initrd.scm @@ -292,8 +292,9 @@ loaded at boot time in the order in which they appear." "dm-crypt" "xts" "serpent_generic" "wp512" ;for encrypted root partitions "nls_iso8859-1" ;for `mkfs.fat`, et.al ,@(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 + '("pata_acpi" "pata_atiixp" "pata_via" "sata_via" ;for ATA controllers + "isci" "megaraid_sas" "libsas" "scsi_transport_sas" ;for SAS controllers + "mptbase" "mptsas" "mptscsih") ;for SAS controllers '()) ,@(if (or virtio? qemu-networking?) virtio-modules