summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Whitaker <mageia@martin-whitaker.me.uk>2026-02-11 13:14:07 +0000
committerMartin Whitaker <mageia@martin-whitaker.me.uk>2026-02-11 13:14:07 +0000
commitc2cd69fde75f383b7cb92aa9c0bda84b8d4bda10 (patch)
treeb268f3a59eff9720ade800288388449162af8ab8
parent4482b7bca4f1e58df610c659f483abc68565fcb7 (diff)
downloaddraklive-config-c2cd69fde75f383b7cb92aa9c0bda84b8d4bda10.tar
draklive-config-c2cd69fde75f383b7cb92aa9c0bda84b8d4bda10.tar.gz
draklive-config-c2cd69fde75f383b7cb92aa9c0bda84b8d4bda10.tar.bz2
draklive-config-c2cd69fde75f383b7cb92aa9c0bda84b8d4bda10.tar.xz
draklive-config-c2cd69fde75f383b7cb92aa9c0bda84b8d4bda10.zip
Add a boot message to the GRUB menu entries that boot Linux (mga#35093)
These will be used when drakiso 1.23 is released.
-rw-r--r--config/build.cfg9
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' },
],