Skip to content

Commit

Permalink
Fix installation for textmode on spvm backend
Browse files Browse the repository at this point in the history
Fix poo#56924: Installation was not started in textmode.
Extend VIDEOMODE condtion with textmode.
  • Loading branch information
czerw committed Sep 23, 2019
1 parent 9abe87c commit 6751bf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/bootloader_spvm.pm
Expand Up @@ -129,7 +129,7 @@ sub boot_spvm {
# Switch to installation console (ssh or vnc)
select_console('installation');
# We need to start installer only if it's pure ssh installation
type_string("yast.ssh\n") if check_var('VIDEOMODE', 'ssh-x');
type_string("yast.ssh\n") if get_var('VIDEOMODE', '') =~ /ssh-x|textmode/;
wait_still_screen;
}

Expand Down

0 comments on commit 6751bf9

Please sign in to comment.