blob: 399db0cd374e53444a582335b2b91d9f74201856 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
post_install() {
cat << EOF
rEFInd is installed at /boot/efi/efi/arch/refind/refindx64.efi
Usage instructions at /usr/share/refind/docs/html/index.html
refind.conf info at /usr/share/refind/docs/html/configfile.html
Linux Kernel specific instructions at /usr/share/refind/docs/html/linux.html
and http://www.rodsbooks.com/efi-bootloaders/efistub.html
Eg:- Kernel file [UEFISYS]/efi/arch/vmlinuz-linux.efi
Initramfs file [UEFISYS]/efi/arch/initramfs-linux.img
Then copy /boot/efi/efi/arch/refind/refind_linux.conf to [UEFISYS]/efi/arch/refind_linux.conf ,
and modify the kernel parameters according to your requirements.
In any case "boot/efi/efi/arch/refind/refind_linux.conf" is always backed-up (pacnew or pacsave).
NOTE: rEFInd requires the kernel file(s) to be present as [UEFISYS]/efi/[SOME_DIRECTORY]/[FILENAME].efi
and the initramfs file in the same directory, for autodetection to work.
NOTE: refind_linux.conf should be in the same directory as the kernel file(s), not the directory where refind.efi or refindx64.efi resides.
EOF
}
post_upgrade() {
post_install
}
|