system/memtest86+: Update README with instructions for GRUB 2

Signed-off-by: Kyle Guinn <elyk03@gmail.com>
This commit is contained in:
Kyle Guinn 2018-10-06 22:00:27 -05:00 committed by Willy Sudiarto Raharjo
parent 7038f6c036
commit 04200d1b66
No known key found for this signature in database
GPG key ID: 887B8374D7333381
2 changed files with 29 additions and 23 deletions

View file

@ -7,4 +7,32 @@ Compilation may fail on 64-bit Slackware due to missing
copy that file from stubs-64.h in the same directory (or create a symlink),
and you may delete your copy/symlink after you have created the package.
See README.SLACKWARE for setup information.
This package installs a bootable image to /boot/memtest86+.bin
which is similar to the kernel images in the same directory.
LILO users: Append this to your /etc/lilo.conf:
image = /boot/memtest86+.bin
label = memtest86+
Then run `/sbin/lilo` to update the boot loader.
Don't forget to re-run `/sbin/lilo` if you upgrade this package.
GRUB 2 users: Append something like this to your /etc/grub.d/40_custom:
menuentry 'memtest86+' {
linux16 (hd0,1)/boot/memtest86+.bin
}
Then run `grub-mkconfig -o /boot/grub/grub.cfg` to update the boot menu.
GRUB Legacy users: Append something like this to your /boot/grub/menu.lst:
title memtest86+
kernel (hd0,0)/boot/memtest86+.bin
See /usr/doc/memtest86+-$VERSION/README for more info.

View file

@ -1,22 +0,0 @@
README.SLACKWARE for memtest86+
The memtest86+ package installs a bootable image to /boot/memtest86+.bin
which is similar to the kernel images in the same directory.
LILO users: Append this to your /etc/lilo.conf:
image = /boot/memtest86+.bin
label = memtest86+
Then run /sbin/lilo to update the boot loader.
Don't forget to re-run /sbin/lilo if you upgrade this package.
GRUB users: Add something like this to your /boot/grub/menu.lst:
title Memtest86+
kernel (hd0,0)/boot/memtest86+.bin
See /usr/doc/memtest86+-$VERSION/README for more info.