From 1b519874784d18b020ddd13b627f9bd9e25fb9de Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Fri, 22 Jun 2018 13:47:45 -0700 Subject: [PATCH] Add 'console=tty0' for anaconda text install on aarch64 We need this at least till #1594402 is fixed. Signed-off-by: Adam Williamson --- tests/_boot_to_anaconda.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/_boot_to_anaconda.pm b/tests/_boot_to_anaconda.pm index 59c7ef0b..1734f96e 100644 --- a/tests/_boot_to_anaconda.pm +++ b/tests/_boot_to_anaconda.pm @@ -19,6 +19,8 @@ sub run { $params .= "inst.repo=" . get_full_repo($repourl) . " "; } $params .= "inst.text " if get_var("ANACONDA_TEXT"); + # makes text install on aarch64 work - RHBZ#1594402 + $params .= "console=tty0" if (get_var("ARCH" eq "aarch64")); # inst.debug enables memory use tracking $params .= "debug" if get_var("MEMCHECK"); # ternary: set $params to "" if it contains only spaces