summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Paśnikowski <marek@marekpasnikowski.pl>2024-07-25 00:44:41 +0200
committerMarek Paśnikowski <marek@marekpasnikowski.pl>2024-07-25 00:44:41 +0200
commit2202a248eaf96bfa3652939f1158c00dc93de492 (patch)
tree7b227a53922431b4cd06e3de41ade601054c6ff0
parent71eb5fc77d44d63e072799a5e628de6fee479807 (diff)
feat(system)!: install linux-firmware
-rw-r--r--machines/portable-bios.scm5
-rw-r--r--systems/mcdowell.scm2
2 files changed, 7 insertions, 0 deletions
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*))