diff options
author | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2019-01-13 14:12:39 +0000 |
---|---|---|
committer | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2019-01-13 14:12:39 +0000 |
commit | f7ab04023806caf4ac46ccdb1fc0a9635ae6e56a (patch) | |
tree | f32c85a656c820dc16294f9b9b93893cb6edc3a4 /examples | |
parent | 418fc3cdacf9aebe505d9e187c1a30cbd7938761 (diff) | |
download | drakiso-f7ab04023806caf4ac46ccdb1fc0a9635ae6e56a.tar drakiso-f7ab04023806caf4ac46ccdb1fc0a9635ae6e56a.tar.gz drakiso-f7ab04023806caf4ac46ccdb1fc0a9635ae6e56a.tar.bz2 drakiso-f7ab04023806caf4ac46ccdb1fc0a9635ae6e56a.tar.xz drakiso-f7ab04023806caf4ac46ccdb1fc0a9635ae6e56a.zip |
bootloader: make it clear that non-free drivers are only for NVIDIA.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/gui/config/build.cfg | 10 | ||||
-rw-r--r-- | examples/xfce/config/build.cfg | 10 |
2 files changed, 10 insertions, 10 deletions
diff --git a/examples/gui/config/build.cfg b/examples/gui/config/build.cfg index 8b3c999..a33cff3 100644 --- a/examples/gui/config/build.cfg +++ b/examples/gui/config/build.cfg @@ -181,11 +181,11 @@ my $config = { bootloader_default => 0, bootloader_timeout => 10, bootloader_entries => [ - 'Boot Mageia Live' => { append => $default_append . ' xdriver=free' }, - ' + use non-free video drivers (slower to boot)' => { append => $default_append . ' nokmsboot' }, - 'Install Mageia Live' => { append => $default_append . ' xdriver=free install' }, - ' + use non-free video drivers (slower to boot)' => { append => $default_append . ' nokmsboot install' }, - 'Memory Test' => { command => 'linux16', image => '/boot/memtest', initrd => 'none' }, + 'Boot Mageia Live' => { append => $default_append . ' xdriver=free' }, + ' + use non-free NVIDIA drivers (slower to boot)' => { append => $default_append . ' nokmsboot' }, + 'Install Mageia Live' => { append => $default_append . ' xdriver=free install' }, + ' + use non-free NVIDIA drivers (slower to boot)' => { append => $default_append . ' nokmsboot install' }, + 'Memory Test' => { command => 'linux16', image => '/boot/memtest', initrd => 'none' }, ], mbr_boot_img => '/usr/share/drakiso/bootloader/images/boot_hybrid.img', eltorito_img => '/usr/share/drakiso/bootloader/images/eltorito.img', diff --git a/examples/xfce/config/build.cfg b/examples/xfce/config/build.cfg index 1a0e9fc..b8ddc75 100644 --- a/examples/xfce/config/build.cfg +++ b/examples/xfce/config/build.cfg @@ -230,11 +230,11 @@ my $config = { bootloader_default => 0, bootloader_timeout => 10, bootloader_entries => [ - 'Boot Mageia Live' => { append => $default_append . ' xdriver=free' }, - ' + use non-free video drivers (slower to boot)' => { append => $default_append . ' nokmsboot' }, - 'Install Mageia Live' => { append => $default_append . ' xdriver=free install' }, - ' + use non-free video drivers (slower to boot)' => { append => $default_append . ' nokmsboot install' }, - 'Memory Test' => { command => 'linux16', image => '/boot/memtest', initrd => 'none' }, + 'Boot Mageia Live' => { append => $default_append . ' xdriver=free' }, + ' + use non-free NVIDIA drivers (slower to boot)' => { append => $default_append . ' nokmsboot' }, + 'Install Mageia Live' => { append => $default_append . ' xdriver=free install' }, + ' + use non-free NVIDIA drivers (slower to boot)' => { append => $default_append . ' nokmsboot install' }, + 'Memory Test' => { command => 'linux16', image => '/boot/memtest', initrd => 'none' }, ], mbr_boot_img => '/usr/share/drakiso/bootloader/images/boot_hybrid.img', eltorito_img => '/usr/share/drakiso/bootloader/images/eltorito.img', |