diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2021-08-28 17:46:33 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2021-08-28 17:47:12 +0200 |
commit | 1dbed7e0988842b8fe8189b7a7e64ff72f72cd61 (patch) | |
tree | 3620be1fbece631298f008f0b958721b63356a0f /gnu/system | |
parent | 63fec9fd6a76a70da737c3ac45959c9a1d0ae829 (diff) | |
download | guix-1dbed7e0988842b8fe8189b7a7e64ff72f72cd61.tar.gz |
images: pinebook-pro: Fix the agetty baud rate.
* gnu/system/images/pinebook-pro.scm (pinebook-pro-barebones-os): Fix the agetty baud rate.
Diffstat (limited to 'gnu/system')
-rw-r--r-- | gnu/system/images/pinebook-pro.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/system/images/pinebook-pro.scm b/gnu/system/images/pinebook-pro.scm index b56a7ea409..ca96621cc4 100644 --- a/gnu/system/images/pinebook-pro.scm +++ b/gnu/system/images/pinebook-pro.scm @@ -49,7 +49,7 @@ (services (cons (service agetty-service-type (agetty-configuration (extra-options '("-L")) ; no carrier detect - (baud-rate "115200") + (baud-rate "1500000") (term "vt100") (tty "ttyS2"))) %base-services)))) |