diff options
author | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2023-08-08 10:27:51 +0100 |
---|---|---|
committer | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2023-08-08 10:27:51 +0100 |
commit | e3d1106f4f6868db6130bcf35d42e1706bb76f21 (patch) | |
tree | 53ed4e62692d8d4ce86b64db17f71ed1a0c796f9 /config | |
parent | 89c3008b7aa0760bb7515a56fa6114ffa60349b8 (diff) | |
download | draklive-config-e3d1106f4f6868db6130bcf35d42e1706bb76f21.tar draklive-config-e3d1106f4f6868db6130bcf35d42e1706bb76f21.tar.gz draklive-config-e3d1106f4f6868db6130bcf35d42e1706bb76f21.tar.bz2 draklive-config-e3d1106f4f6868db6130bcf35d42e1706bb76f21.tar.xz draklive-config-e3d1106f4f6868db6130bcf35d42e1706bb76f21.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.
Diffstat (limited to 'config')
-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 6db16db..410b906 100644 --- a/config/build.cfg +++ b/config/build.cfg @@ -393,7 +393,7 @@ my $config = { 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' }, + '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', |