blob: 011552bcdf1d9867408070f913b7ff74e0b3cf5c (
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
|
post_install() {
cat << EOF
rEFInd UEFI application has been installed at /usr/lib/refind/refind_*.efi
Other UEFI applications have been installed at /usr/lib/refind/tools_*/
UEFI drivers have deen installed at /usr/lib/refind/drivers_*/
Copy the efi application (according to your UEFI ARCH)
and /usr/lib/refind/refind.conf-sample to a sub-directory of <EFISYS>/EFI/
as refind.conf and add an entry to firmware boot menu using efibootmgr
or mactel-boot (for Macs)
rEFInd Icons have been installed at /usr/share/refind/icons/
rEFInd Fonts have been installed at /usr/share/refind/fonts/
HTML Documentation is available at /usr/share/doc/refind/html/
More info: https://wiki.archlinux.org/index.php/UEFI_Bootloaders#Using_rEFInd
EOF
}
post_upgrade() {
post_install
}
|