Restore #1594402 / #1661288 workarounds (aarch64 console)

This reverts commit f40599ee15,
with a few tweaks. It turns out we still need these workarounds
- see https://bugzilla.redhat.com/show_bug.cgi?id=1661288 .
This commit is contained in:
Adam Williamson 2019-03-29 15:18:17 -07:00
parent b1a0fd7dc3
commit 794c245786
3 changed files with 37 additions and 1 deletions

View File

@ -25,6 +25,8 @@ sub run {
} }
if (get_var("ANACONDA_TEXT")) { if (get_var("ANACONDA_TEXT")) {
$params .= "inst.text "; $params .= "inst.text ";
# we need this on aarch64 till #1594402 is resolved
$params .= "console=tty0 " if (get_var("ARCH") eq "aarch64");
} }
# inst.debug enables memory use tracking # inst.debug enables memory use tracking
$params .= "debug" if get_var("MEMCHECK"); $params .= "debug" if get_var("MEMCHECK");

View File

@ -104,6 +104,23 @@ sub run {
# serial console. we don't want this, it messes up decryption # serial console. we don't want this, it messes up decryption
# (as plymouth will expect the passphrase on the serial console, # (as plymouth will expect the passphrase on the serial console,
# not the virtual console). Let's go fix this up now. # not the virtual console). Let's go fix this up now.
if (get_var("ARCH") eq "aarch64") {
$self->root_console();
# somehow, by this point, localized keyboard layout has been
# loaded for this tty, so for French and Arabic at least we
# need to load the 'us' layout again for the next command to
# be typed correctly
console_loadkeys_us;
# stick 'console=tty0' on the end of GRUB_CMDLINE_LINUX in
# the grub defaults file, and 'quiet' so we don't get kernel
# messages, which screws up some needles. RHBZ#1661288
assert_script_run 'sed -i -e "s,\(GRUB_CMDLINE_LINUX.*\)\",\1 console=tty0 quiet\",g" /mnt/sysimage/etc/default/grub';
# regenerate the bootloader config
assert_script_run "chroot /mnt/sysimage grub2-mkconfig -o /boot/efi/EFI/fedora/grub.cfg";
# let's just reboot from here, seems simplest
type_string "reboot\n" unless (get_var("MEMCHECK"));
return;
}
# for the memory check test, we *don't* want to leave # for the memory check test, we *don't* want to leave
unless (get_var("MEMCHECK")) { unless (get_var("MEMCHECK")) {
# If the variable for system-wide ABRT is set to system, switch # If the variable for system-wide ABRT is set to system, switch

View File

@ -19,7 +19,24 @@ sub run {
# select "rescue system" # select "rescue system"
if (get_var('UEFI')) { if (get_var('UEFI')) {
send_key "down"; send_key "down";
send_key "ret"; # we need this on aarch64 till #1661288 is resolved
if (get_var('ARCH') eq 'aarch64') {
send_key "e";
# duped with do_bootloader, sadly...
for (1 .. 50) {
send_key 'down';
}
sleep 1;
send_key 'up';
sleep 1;
send_key 'up';
send_key "end";
type_safely " console=tty0";
send_key "ctrl-x";
}
else {
send_key "ret";
}
} }
else { else {
type_string "r\n"; type_string "r\n";