diff options
author | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2020-03-21 18:00:07 +0000 |
---|---|---|
committer | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2020-03-21 18:00:07 +0000 |
commit | bec89b681db85c0b1c52b185d895c6ac29c41bd9 (patch) | |
tree | 2ed20e6bd2bc727ad0f6c65ef024e1de846ee593 | |
parent | 74e93f83833f6e57520f017cd52a66000b9de5ea (diff) | |
download | drakiso-bec89b681db85c0b1c52b185d895c6ac29c41bd9.tar drakiso-bec89b681db85c0b1c52b185d895c6ac29c41bd9.tar.gz drakiso-bec89b681db85c0b1c52b185d895c6ac29c41bd9.tar.bz2 drakiso-bec89b681db85c0b1c52b185d895c6ac29c41bd9.tar.xz drakiso-bec89b681db85c0b1c52b185d895c6ac29c41bd9.zip |
examples: default to not generating a xorg.conf file on boot.
-rw-r--r-- | examples/gui/config/build.cfg | 4 | ||||
-rw-r--r-- | examples/minimal/config/build.cfg | 2 | ||||
-rw-r--r-- | examples/xfce/config/build.cfg | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/examples/gui/config/build.cfg b/examples/gui/config/build.cfg index f3ddbc3..f87a9f5 100644 --- a/examples/gui/config/build.cfg +++ b/examples/gui/config/build.cfg @@ -185,9 +185,9 @@ my $config = { bootloader_default => 0, bootloader_timeout => 10, bootloader_entries => [ - 'Boot Mageia Live' => { append => $default_append . ' xdriver=free' }, + 'Boot Mageia Live' => { append => $default_append . ' noxconf' }, ' + use non-free NVIDIA drivers (slower to boot)' => { append => $default_append . ' nokmsboot' }, - 'Install Mageia Live' => { append => $default_append . ' xdriver=free install' }, + 'Install Mageia Live' => { append => $default_append . ' noxconf install' }, ' + use non-free NVIDIA drivers (slower to boot)' => { append => $default_append . ' nokmsboot install' }, 'Memory Test' => { command => 'linux16', image => '/boot/memtest', initrd => 'none' }, ], diff --git a/examples/minimal/config/build.cfg b/examples/minimal/config/build.cfg index 2e5e567..9aceac6 100644 --- a/examples/minimal/config/build.cfg +++ b/examples/minimal/config/build.cfg @@ -166,7 +166,7 @@ my $config = { bootloader_default => 0, bootloader_timeout => 10, bootloader_entries => [ - 'Boot Mageia Live' => { append => $default_append . ' xdriver=free' }, + 'Boot Mageia Live' => { append => $default_append . ' noxconf' }, 'Memory Test' => { command => 'linux16', image => '/boot/memtest', initrd => 'none' }, ], mbr_boot_img => '/usr/share/drakiso/bootloader/images/boot_hybrid.img', diff --git a/examples/xfce/config/build.cfg b/examples/xfce/config/build.cfg index a34efb0..40c8ba3 100644 --- a/examples/xfce/config/build.cfg +++ b/examples/xfce/config/build.cfg @@ -234,9 +234,9 @@ my $config = { bootloader_default => 0, bootloader_timeout => 10, bootloader_entries => [ - 'Boot Mageia Live' => { append => $default_append . ' xdriver=free' }, + 'Boot Mageia Live' => { append => $default_append . ' noxconf' }, ' + use non-free NVIDIA drivers (slower to boot)' => { append => $default_append . ' nokmsboot' }, - 'Install Mageia Live' => { append => $default_append . ' xdriver=free install' }, + 'Install Mageia Live' => { append => $default_append . ' noxconf install' }, ' + use non-free NVIDIA drivers (slower to boot)' => { append => $default_append . ' nokmsboot install' }, 'Memory Test' => { command => 'linux16', image => '/boot/memtest', initrd => 'none' }, ], |