system: Factor out agetty-default-service.

* gnu/system/install.scm (agetty-default-service): New variable.
(beaglebone-black-installation-os): Use it.
(a20-olinuxino-lime2-emmc-installation-os): Use it.
(a20-olinuxino-micro-installation-os): Use it.
(banana-pi-m2-ultra-installation-os): Use it.
master
Danny Milosavljevic 2018-01-20 21:01:58 +01:00
parent a7bb327e3c
commit 8bac66deab
No known key found for this signature in database
GPG Key ID: E71A35542C30BAA5
1 changed files with 16 additions and 34 deletions

View File

@ -379,6 +379,14 @@ You have been warned. Thanks for being so brave.\x1b[0m
nvi ;:wq!
%base-packages))))
(define* (agetty-default-service #:optional (tty "ttyS0"))
"Return an agetty-service on the given TTY"
(agetty-service (agetty-configuration
(extra-options '("-L"))
(baud-rate "115200")
(term "vt100")
(tty tty))))
(define beaglebone-black-installation-os
(operating-system
(inherit installation-os)
@ -391,15 +399,7 @@ You have been warned. Thanks for being so brave.\x1b[0m
;; This module is required to mount the sd card.
#:extra-modules (list "omap_hsmmc")
rest)))
(services (append
;; mingetty does not work on serial lines.
;; Use agetty with board-specific serial parameters.
(list (agetty-service
(agetty-configuration
(extra-options '("-L"))
(baud-rate "115200")
(term "vt100")
(tty "ttyO0"))))
(services (cons* (agetty-default-service "ttyO0")
(operating-system-user-services installation-os)))))
(define a20-olinuxino-lime2-emmc-installation-os
@ -409,13 +409,7 @@ You have been warned. Thanks for being so brave.\x1b[0m
(bootloader u-boot-a20-olinuxino-lime2-bootloader)
(target "/dev/mmcblk1"))) ; eMMC storage
(kernel linux-libre)
(services (append
(list (agetty-service
(agetty-configuration
(extra-options '("-L"))
(baud-rate "115200")
(term "vt100")
(tty "ttyS0"))))
(services (cons* (agetty-default-service "ttyS0")
(operating-system-user-services installation-os)))))
(define a20-olinuxino-micro-installation-os
@ -425,13 +419,7 @@ You have been warned. Thanks for being so brave.\x1b[0m
(bootloader u-boot-a20-olinuxino-lime2-bootloader)
(target "/dev/mmcblk0"))) ; SD card storage
(kernel linux-libre)
(services (append
(list (agetty-service
(agetty-configuration
(extra-options '("-L"))
(baud-rate "115200")
(term "vt100")
(tty "ttyS0"))))
(services (cons* (agetty-default-service "ttyS0")
(operating-system-user-services installation-os)))))
(define banana-pi-m2-ultra-installation-os
@ -441,13 +429,7 @@ You have been warned. Thanks for being so brave.\x1b[0m
(bootloader u-boot-banana-pi-m2-ultra-bootloader)
(target "/dev/mmcblk1"))) ; eMMC storage
(kernel linux-libre)
(services (append
(list (agetty-service
(agetty-configuration
(extra-options '("-L"))
(baud-rate "115200")
(term "vt100")
(tty "ttyS0"))))
(services (cons* (agetty-default-service "ttyS0")
(operating-system-user-services installation-os)))))
;; Return the default os here so 'guix system' can consume it directly.