summaryrefslogtreecommitdiff
path: root/gnu/system
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2026-04-15 01:46:38 +0200
committerVagrant Cascadian <vagrant@debian.org>2026-05-24 16:14:16 -0700
commitf71cf7b0dff8a22cac2970786b53676097cf6fe0 (patch)
treeeb5d08d6b854d4753a3ad0e4022c4fccdb1ac07d /gnu/system
parent55e438ecbc7f1e980c7508e7aeb6585c838f39e8 (diff)
system: images: rock-4c-plus: remove duplicated serial port service.
Without this change, the rock-4c-plus boots fine and we can see the serial port output is fine, but only part of what is typed through the serial port reaches the console. This makes it very difficult to type commands. And with this change, the serial port is already activated automatically and in that case we can interact well with the console. * gnu/system/images/rock-4c-plus.scm (rock-4c-plus-barebones-os): remove serial port service. Change-Id: Ieb87f2ed6054b529ffa4399fcf4ec997e3e454a6 Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> Signed-off-by: Vagrant Cascadian <vagrant@debian.org>
Diffstat (limited to 'gnu/system')
-rw-r--r--gnu/system/images/rock-4c-plus.scm9
1 files changed, 0 insertions, 9 deletions
diff --git a/gnu/system/images/rock-4c-plus.scm b/gnu/system/images/rock-4c-plus.scm
index 293a117d1e9..b6b6aa51e1b 100644
--- a/gnu/system/images/rock-4c-plus.scm
+++ b/gnu/system/images/rock-4c-plus.scm
@@ -50,15 +50,6 @@
50 (type "ext4")) 50 (type "ext4"))
51 %base-file-systems)) 51 %base-file-systems))
52 (services (append (list 52 (services (append (list
53 (service
54 agetty-service-type
55 (agetty-configuration
56 (extra-options '("-L")) ;no carrier detect
57 ;; Upstream u-boot uses 1500000 as well, so the
58 ;; u-boot-rock-4c-plus-rk3399 inherit it too.
59 (baud-rate "1500000")
60 (term "vt100")
61 (tty "ttyS2")))
62 (service dhcpcd-service-type)) 53 (service dhcpcd-service-type))
63 %base-services)))) 54 %base-services))))
64 55