From 2d9668a3359959da34e3659d92edf13331649099 Mon Sep 17 00:00:00 2001 From: Steev Klimaszewski Date: Mon, 25 Jan 2021 21:55:57 -0600 Subject: [PATCH] Export a default console for arm64 Signed-off-by: Steev Klimaszewski --- simple-cdd/simple-cdd.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/simple-cdd/simple-cdd.conf b/simple-cdd/simple-cdd.conf index c7925da..dab59f0 100644 --- a/simple-cdd/simple-cdd.conf +++ b/simple-cdd/simple-cdd.conf @@ -70,6 +70,8 @@ if [ "$ARCH" = "i386" ]; then fi if [ "$ARCH" = "arm64" ]; then kernel_packages="linux-image-arm64" +# ARM devices don't typically have a default console set, so we export one here + export KERNEL_PARAMS="console=tty0 hostname=kali" fi # Random other variables