diff options
author | Frédéric Buclin <LpSolit@netscape.net> | 2017-05-06 20:02:52 +0200 |
---|---|---|
committer | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2017-06-23 08:05:56 +0100 |
commit | 14eb1e5893eb7bc6748cf388df7cb05a3f05c7da (patch) | |
tree | 30a4906269c4401a23e15840581690c0e32e16ef /images/make_boot_img | |
parent | bf6a242fafbfc2baa9b4001141dd75eec8d289a1 (diff) | |
download | drakx-14eb1e5893eb7bc6748cf388df7cb05a3f05c7da.tar drakx-14eb1e5893eb7bc6748cf388df7cb05a3f05c7da.tar.gz drakx-14eb1e5893eb7bc6748cf388df7cb05a3f05c7da.tar.bz2 drakx-14eb1e5893eb7bc6748cf388df7cb05a3f05c7da.tar.xz drakx-14eb1e5893eb7bc6748cf388df7cb05a3f05c7da.zip |
Increase the default window size of the installer to 1024x768 (mga#20624)
This permits to correctly display the different panels as some
of them contain quite a lot of data.
Diffstat (limited to 'images/make_boot_img')
-rwxr-xr-x | images/make_boot_img | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/images/make_boot_img b/images/make_boot_img index 21c75689c..accf8aef3 100755 --- a/images/make_boot_img +++ b/images/make_boot_img @@ -11,7 +11,7 @@ my ($arch) = $Config{archname} =~ /(.*?)-/; my $default_append = 'audit=0'; my $default_acpi = ''; -my $default_vga = "vga=788 splash quiet"; +my $default_vga = "vga=791 splash quiet"; my $default_iswmd = "noiswmd"; my $timeout = $ENV{BOOT_AUTOMATIC_METHOD} ? 5 : 150; my $isolinux_bin = '/usr/lib/syslinux/isolinux.bin'; @@ -255,8 +255,6 @@ sub syslinux_all_files { @$kernels or die "syslinux_all_files: no kernel\n"; - $default_vga =~ /788/ or die 'we rely on vga=788 for bootsplash'; - each_index { mkdir "$dir/$arch", 0777; _ "cp all.kernels/$_/vmlinuz $dir/$arch"; |