diff options
author | Danny Milosavljevic <dannym@scratchpost.org> | 2020-12-03 12:24:36 +0100 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2020-12-03 12:24:36 +0100 |
commit | 295aa49ec996ce46ea1fe6a3929a9b74e8680569 (patch) | |
tree | 4f84819e43cb8839e33a76ceb856d01bf82cf278 /gnu/system | |
parent | 9cf531f57786c858c34c11a08b0ad16e2f26b27b (diff) | |
download | guix-295aa49ec996ce46ea1fe6a3929a9b74e8680569.tar.gz |
images: novena: Replace agetty-service by term-auto.
* gnu/system/images/novena.scm (novena-barebones-os)[kernel-arguments]: New field. [services]: Remove field.
Diffstat (limited to 'gnu/system')
-rw-r--r-- | gnu/system/images/novena.scm | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/gnu/system/images/novena.scm b/gnu/system/images/novena.scm index 335074e3b7..47780612bc 100644 --- a/gnu/system/images/novena.scm +++ b/gnu/system/images/novena.scm @@ -42,18 +42,12 @@ (target "/dev/vda"))) (initrd-modules '("sdhci-esdhc-imx" "ahci_imx")) ;(kernel linux-libre-arm-generic) + (kernel-arguments '("console=ttymxc1,115200")) (file-systems (cons (file-system (device (file-system-label "my-root")) (mount-point "/") (type "ext4")) - %base-file-systems)) - (services (cons (service agetty-service-type - (agetty-configuration - (extra-options '("-L")) ; no carrier detect - (baud-rate "115200") - (term "vt100") - (tty "ttymxc1"))) - %base-services)))) + %base-file-systems)))) (define novena-image-type (image-type |