summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Whitaker <mageia@martin-whitaker.me.uk>2022-10-23 23:39:00 +0100
committerMartin Whitaker <mageia@martin-whitaker.me.uk>2022-10-23 23:39:00 +0100
commitade6ca04b8d44a8f3c3257f81ed4a35b51a832fe (patch)
tree7729058e1afd63db2f46f06b737faa8725946553
parent98c370a5dc11f17a35a8f4b8e4eb3750e1363f24 (diff)
downloaddraklive-config-ade6ca04b8d44a8f3c3257f81ed4a35b51a832fe.tar
draklive-config-ade6ca04b8d44a8f3c3257f81ed4a35b51a832fe.tar.gz
draklive-config-ade6ca04b8d44a8f3c3257f81ed4a35b51a832fe.tar.bz2
draklive-config-ade6ca04b8d44a8f3c3257f81ed4a35b51a832fe.tar.xz
draklive-config-ade6ca04b8d44a8f3c3257f81ed4a35b51a832fe.zip
Remove non-free driver options from 32-bit boot menu.
All the NVIDIA drivers are now only available for 64-bit systems.
-rw-r--r--config/build.cfg4
1 files changed, 4 insertions, 0 deletions
diff --git a/config/build.cfg b/config/build.cfg
index 05a12d4..fa60780 100644
--- a/config/build.cfg
+++ b/config/build.cfg
@@ -383,9 +383,13 @@ my $config = {
bootloader_timeout => 10,
bootloader_entries => [
'Boot Mageia Live' => { 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' },
+ ),
'Install Mageia Live' => { 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' },
+ ),
'Memory Test' => { command => 'linux32', image => '/boot/memtest', initrd => 'none' },
],
mbr_boot_img => 'bootloader/images/boot_hybrid.img',