diff options
| -rw-r--r-- | config/build.cfg | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/config/build.cfg b/config/build.cfg index 7601509..4cf4cf6 100644 --- a/config/build.cfg +++ b/config/build.cfg @@ -36,6 +36,7 @@ sub build_title { join(' ', $distro, $release, $product, $desktops[0]); } +my $default_message = 'Starting Mageia Live system ...'; my $default_append = 'root=mgalive:LABEL=' . build_label($build) . ' noiswmd audit=0 rd.luks=0 rd.lvm=0 rd.md=0 rd.dm=0 vga=788 splash quiet'; my $config = { @@ -383,13 +384,13 @@ my $config = { bootloader_default => 0, bootloader_timeout => 10, bootloader_entries => [ - 'Boot Mageia Live' => { append => $default_append . ' noxconf xdriver=free' }, + 'Boot Mageia Live' => { message => $default_message, append => $default_append . ' noxconf xdriver=free' }, if_($arch eq 'x86_64', - ' + use non-free NVIDIA drivers (slower to boot)' => { append => $default_append . ' nokmsboot xclone=1' }, + ' + use non-free NVIDIA drivers (slower to boot)' => { message => $default_message, append => $default_append . ' nokmsboot xclone=1' }, ), - 'Install Mageia Live' => { append => $default_append . ' noxconf xdriver=free install' }, + 'Install Mageia Live' => { message => $default_message, append => $default_append . ' noxconf xdriver=free install' }, if_($arch eq 'x86_64', - ' + use non-free NVIDIA drivers (slower to boot)' => { append => $default_append . ' nokmsboot xclone=1 install' }, + ' + use non-free NVIDIA drivers (slower to boot)' => { message => $default_message, append => $default_append . ' nokmsboot xclone=1 install' }, ), 'Memory Test' => { command => 'linux', image => '/boot/memtest', initrd => 'none', append => 'nobigstatus' }, ], |
