diff options
| author | Bruno Victal <mirai@makinata.eu> | 2023-02-25 18:57:50 +0000 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2023-03-03 17:55:32 +0100 |
| commit | 4892c0186eec75253701c5097803b6168a2956ce (patch) | |
| tree | 205b0f702025988afbd6b9bcb1dad890a70ec83b /gnu/system | |
| parent | ad665a38fc18ed7a6b8efb09086713b0e73e3781 (diff) | |
services: base: Deprecate 'agetty-service' procedure.
* doc/guix.texi (Base Services): Replace agetty-service with
agetty-service-type.
* gnu/services/base.scm (agetty-service): Deprecate procedure.
* gnu/system/examples/beaglebone-black.tmpl
(operating-system)[services]: Use agetty-service-type.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/system')
| -rw-r--r-- | gnu/system/examples/beaglebone-black.tmpl | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gnu/system/examples/beaglebone-black.tmpl b/gnu/system/examples/beaglebone-black.tmpl index 40d0a76a379..18bbb2723c4 100644 --- a/gnu/system/examples/beaglebone-black.tmpl +++ b/gnu/system/examples/beaglebone-black.tmpl | |||
| @@ -48,10 +48,10 @@ | |||
| 48 | (services (append (list (service dhcp-client-service-type) | 48 | (services (append (list (service dhcp-client-service-type) |
| 49 | ;; mingetty does not work on serial lines. | 49 | ;; mingetty does not work on serial lines. |
| 50 | ;; Use agetty with board-specific serial parameters. | 50 | ;; Use agetty with board-specific serial parameters. |
| 51 | (agetty-service | 51 | (service agetty-service-type |
| 52 | (agetty-configuration | 52 | (agetty-configuration |
| 53 | (extra-options '("-L")) | 53 | (extra-options '("-L")) |
| 54 | (baud-rate "115200") | 54 | (baud-rate "115200") |
| 55 | (term "vt100") | 55 | (term "vt100") |
| 56 | (tty "ttyO0")))) | 56 | (tty "ttyO0")))) |
| 57 | %base-services))) | 57 | %base-services))) |
