From 2202a248eaf96bfa3652939f1158c00dc93de492 Mon Sep 17 00:00:00 2001 From: Marek Paśnikowski Date: Thu, 25 Jul 2024 00:44:41 +0200 Subject: feat(system)!: install linux-firmware --- machines/portable-bios.scm | 5 +++++ systems/mcdowell.scm | 2 ++ 2 files changed, 7 insertions(+) diff --git a/machines/portable-bios.scm b/machines/portable-bios.scm index a952773..a5c03c1 100644 --- a/machines/portable-bios.scm +++ b/machines/portable-bios.scm @@ -3,6 +3,7 @@ #:use-module (gnu bootloader grub) ; grub-bootloader #:use-module (gnu system file-systems) ; file-system #:use-module (nongnu packages linux) ; linux + ; linux-firmware #:use-module (nongnu system linux-initrd) ; microcode-initrd ) @@ -25,6 +26,10 @@ (device root-device)))) (list file-system-root))) +;; (record package) +(define-public firmware* + (list linux-firmware)) + ;; record package (define-public initrd* microcode-initrd) diff --git a/systems/mcdowell.scm b/systems/mcdowell.scm index 3853d17..ed1eaaa 100644 --- a/systems/mcdowell.scm +++ b/systems/mcdowell.scm @@ -1,6 +1,7 @@ (define-module (systems mcdowell) #:use-module (machines portable-bios) ; bootloader-configuration* ; file-systems* + ; firmware* ; initrd* ; kernel* #:use-module (suweren system) ; %suweren-operating-system @@ -20,6 +21,7 @@ (%suweren-operating-system kernel* bootloader-configuration* initrd* + firmware* host-name* (file-systems* host-name*) users*)) -- cgit v1.2.3