mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-16 11:43:08 +00:00
Also do 'console=tty0' workaround for rescue boot on aarch64
...sigh, another place this is needed, and it's a bit ugly here. Ah, well. Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
parent
e200e29fff
commit
d8f5f56fff
@ -18,7 +18,21 @@ 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 #1594402 is resolved
|
||||||
|
if (get_var('ARCH') eq 'aarch64') {
|
||||||
|
send_key "e";
|
||||||
|
# duped with do_bootloader, sadly...
|
||||||
|
send_key "down";
|
||||||
|
sleep 1;
|
||||||
|
send_key "down";
|
||||||
|
sleep 1;
|
||||||
|
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";
|
||||||
|
Loading…
Reference in New Issue
Block a user