db-move: moved seahorse from [testing] to [extra] (x86_64)
[arch-packages.git] / syslinux / trunk / syslinux.install
blobcbc4e9e7ffbbc8c01ca1d8c34622646cd3faf516
1 show_efi_msg() {
2   cat << EOF
4 ==> For setting up Syslinux EFI follow
5     https://wiki.archlinux.org/index.php/Syslinux#UEFI_Systems
7 ==> The syslinux-install_update script does not currently support EFI install
9 EOF
12 show_bios_autoupdate_msg() {
13   cat << EOF
15 ==> For setting up Syslinux BIOS using the syslinux-install_update script follow
16     https://wiki.archlinux.org/index.php/Syslinux#Automatic_Install
17 EOF
20 post_install() {
21   [ -f /boot/syslinux/SYSLINUX_AUTOUPDATE ] || show_bios_autoupdate_msg
22   [ -d /sys/firmware/efi ] && show_efi_msg
24   true
27 post_upgrade() {
28   ## auto-update syslinux if /boot/syslinux/SYSLINUX_AUTOUPDATE exists
29   /usr/bin/syslinux-install_update -s
31   post_install