diff options
author | Olivier Blin <oblin@mandriva.com> | 2009-12-18 12:56:43 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2009-12-18 12:56:43 +0000 |
commit | d0dc6d98d341fcffd1f45eb58c230b78d2080e5b (patch) | |
tree | 73d4b404c7e073b57c43209c077ee216038d1efc /draklive | |
parent | c5038957b359638890e0190efdb0c1d6b6e18197 (diff) | |
download | drakiso-d0dc6d98d341fcffd1f45eb58c230b78d2080e5b.tar drakiso-d0dc6d98d341fcffd1f45eb58c230b78d2080e5b.tar.gz drakiso-d0dc6d98d341fcffd1f45eb58c230b78d2080e5b.tar.bz2 drakiso-d0dc6d98d341fcffd1f45eb58c230b78d2080e5b.tar.xz drakiso-d0dc6d98d341fcffd1f45eb58c230b78d2080e5b.zip |
fix adding vga options in normal case
Diffstat (limited to 'draklive')
-rwxr-xr-x | draklive | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -55,7 +55,7 @@ sub get_default_append { join(' ', if_(!need_media_specific_boot($live), 'root=' . $live->{media}->get_media_source_for_nash), - if_($live->{system}{vga_mode} && $append =~ /\bvga=\b/, + if_($live->{system}{vga_mode} && $append !~ /\bvga=\b/, 'splash=silent', 'vga=' . $live->{system}{vga_mode}), if_($append, $append), |