diff options
-rw-r--r-- | machines/amd64.scm (renamed from machines/portable-bios.scm) | 4 | ||||
-rw-r--r-- | systems/mcdowell.scm | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/machines/portable-bios.scm b/machines/amd64.scm index 17714fe..08b1eb2 100644 --- a/machines/portable-bios.scm +++ b/machines/amd64.scm @@ -1,4 +1,4 @@ -(define-module (machines portable-bios) +(define-module (machines amd64) ;; bootloader-configuration #:use-module (gnu bootloader) @@ -47,7 +47,7 @@ microcode-initrd) ;; record* package -(define-public kernel* +(define-public kernel-amd64 linux) ;; string -> diff --git a/systems/mcdowell.scm b/systems/mcdowell.scm index ee0c850..c99afca 100644 --- a/systems/mcdowell.scm +++ b/systems/mcdowell.scm @@ -48,11 +48,11 @@ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (define (operating-system*) - (use-modules (machines portable-bios) + (use-modules (machines amd64) (suweren system)) ((@ (gnu system) operating-system) + (kernel kernel-amd64) (bootloader (bootloader-mcdowell)) - (kernel kernel*) (keyboard-layout keyboard-layout-mcdowell) (initrd initrd*) (firmware firmware*) |