diff options
author | Martin Whitaker <mageia@martin.whitaker.me.uk> | 2023-08-08 10:22:33 +0100 |
---|---|---|
committer | Martin Whitaker <mageia@martin.whitaker.me.uk> | 2023-08-08 10:28:43 +0100 |
commit | 6d4d157817a494c6ab56496a811a47847773a13c (patch) | |
tree | aaa4a7ac79a57b59da7049dbe26eb546aad19fd3 | |
parent | 95562cf1ba16557a0161bec65ec52c66d584b154 (diff) | |
download | drakclassic-config-6d4d157817a494c6ab56496a811a47847773a13c.tar drakclassic-config-6d4d157817a494c6ab56496a811a47847773a13c.tar.gz drakclassic-config-6d4d157817a494c6ab56496a811a47847773a13c.tar.bz2 drakclassic-config-6d4d157817a494c6ab56496a811a47847773a13c.tar.xz drakclassic-config-6d4d157817a494c6ab56496a811a47847773a13c.zip |
Add 'nobigstatus' boot option to memtest86+.
The big pass/fail banner is only really useful for mass production,
and obscures the actual error messages. And at least in v6.10 there
is a bug that prevents it being removed if there is only 1 error.
-rw-r--r-- | config/build.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/build.cfg b/config/build.cfg index 3931421..8589e79 100644 --- a/config/build.cfg +++ b/config/build.cfg @@ -51,7 +51,7 @@ my $config = { bootloader_timeout => 10, bootloader_entries => [ 'Install Mageia' => { append => 'automatic=method:cdrom audit=0 noiswmd vga=791 splash quiet' }, 'Rescue System' => { append => 'automatic=method:cdrom audit=0 noiswmd vga=791 rescue' }, - 'Memory Test' => { command => 'linux32', image => '/boot/memtest', initrd => 'none' }, + 'Memory Test' => { command => 'linux32', image => '/boot/memtest', initrd => 'none', append => 'nobigstatus' }, ], mbr_boot_img => 'bootloader/images/boot_hybrid.img', eltorito_img => 'bootloader/images/eltorito.img', |