From 5aa6fbc0190783b25b655b0609d745a063943dad Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Fri, 12 Mar 2021 12:42:57 -0500 Subject: [PATCH 1/2] Fix typo in confluent profile.yaml The quiet argument was missed due to typo in parameter name. --- confluent_osdeploy/genesis/profiles/default/profile.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/confluent_osdeploy/genesis/profiles/default/profile.yaml b/confluent_osdeploy/genesis/profiles/default/profile.yaml index bc5d6fb6..7ed4fb92 100644 --- a/confluent_osdeploy/genesis/profiles/default/profile.yaml +++ b/confluent_osdeploy/genesis/profiles/default/profile.yaml @@ -1,2 +1,2 @@ label: Genesis -kernelarags: quiet +kernelargs: quiet From 8032ea36be4a10f9b2f4ee06ffbf8fba12ede1e5 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Fri, 12 Mar 2021 13:54:36 -0500 Subject: [PATCH 2/2] Fix local console behavior in genesis This will have the vga console be less concerning. --- .../genesis/initramfs/opt/confluent/bin/rungenesis | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/confluent_osdeploy/genesis/initramfs/opt/confluent/bin/rungenesis b/confluent_osdeploy/genesis/initramfs/opt/confluent/bin/rungenesis index ebdeb1bb..e18aef2c 100644 --- a/confluent_osdeploy/genesis/initramfs/opt/confluent/bin/rungenesis +++ b/confluent_osdeploy/genesis/initramfs/opt/confluent/bin/rungenesis @@ -9,12 +9,13 @@ if ! grep console= /proc/cmdline >& /dev/null; then if [ ! -z "$autocons" ]; then echo "Using $(cat /tmp/01-autocons.conf)" tmux a <> $autocons >&0 2>&1 & + TERM=linux tmux a <> /dev/tty1 >&0 2>&1 & else tmux a <> /dev/console >&0 2>&1 & fi else tmux a <> /dev/console >&0 2>&1 & - tmux a <> /dev/tty1 >&0 2>&1 & + TERM=linux tmux a <> /dev/tty1 >&0 2>&1 & fi echo -n "udevd: " /usr/lib/systemd/systemd-udevd --daemon