mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
24 lines
528 B
Plaintext
24 lines
528 B
Plaintext
post_install() {
|
|
cat << EOF
|
|
For using memtest86+ please modifiy your bootloaders.
|
|
|
|
If /boot is on root partitions:
|
|
==> GRUB add this to /boot/grub/menu.lst
|
|
title Memtest86+ [/boot/memtest86+/memtest.bin]
|
|
kernel (hd?,?)/boot/memtest86+/memtest.bin
|
|
|
|
==> Lilo add this to lilo.conf
|
|
image = /boot/memtest86+/memtest.bin
|
|
label = "Memtest86+"
|
|
|
|
If /boot is on seperate partition then just use /memtest86+/memtest.bin
|
|
without /boot prefix.
|
|
EOF
|
|
}
|
|
|
|
post_remove() {
|
|
cat << EOF
|
|
Please remove your additions from your bootloaders.
|
|
EOF
|
|
}
|