diff options
author | Britney Fransen <brfransen@gmail.com> | 2014-12-19 21:53:50 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2014-12-19 21:53:50 (GMT) |
commit | 6e4bbdf7f4ad836833b294b6842db8f465356089 (patch) | |
tree | 81ef5c49a098f6dd87131939b17943d437d8b8c6 /abs/extra/syslinux/syslinux.install | |
parent | 8792c353b518f758fbbf7d56fdec95b842b32490 (diff) | |
download | linhes_pkgbuild-6e4bbdf7f4ad836833b294b6842db8f465356089.zip linhes_pkgbuild-6e4bbdf7f4ad836833b294b6842db8f465356089.tar.gz linhes_pkgbuild-6e4bbdf7f4ad836833b294b6842db8f465356089.tar.bz2 |
syslinux: update to 6.03
Diffstat (limited to 'abs/extra/syslinux/syslinux.install')
-rw-r--r-- | abs/extra/syslinux/syslinux.install | 43 |
1 files changed, 16 insertions, 27 deletions
diff --git a/abs/extra/syslinux/syslinux.install b/abs/extra/syslinux/syslinux.install index 4bb7f85..cbc4e9e 100644 --- a/abs/extra/syslinux/syslinux.install +++ b/abs/extra/syslinux/syslinux.install @@ -1,43 +1,32 @@ -post_install() { - +show_efi_msg() { cat << EOF -==> For setting up Syslinux BIOS using the syslinux-install_update script follow - https://wiki.archlinux.org/index.php/Syslinux#Automatic_Install -EOF - - ## Message specific to Syslinux 4.xx (or 5.xx) to 6.xx upgrade - if [ "$(vercmp $2 6.00)" -lt 0 ]; then - - cat << EOF +==> For setting up Syslinux EFI follow + https://wiki.archlinux.org/index.php/Syslinux#UEFI_Systems -==> If you are upgrading from Syslinux 4.xx or 5.xx, please re-install - (not update) Syslinux BIOS manually (not using the install script) once - by following https://wiki.archlinux.org/index.php/Syslinux#Manual_install +==> The syslinux-install_update script does not currently support EFI install -==> The install script may not properly upgrade Syslinux to 6.xx version EOF - - fi - +} + +show_bios_autoupdate_msg() { cat << EOF -==> For setting up Syslinux EFI follow - https://wiki.archlinux.org/index.php/Syslinux#UEFI_Systems +==> For setting up Syslinux BIOS using the syslinux-install_update script follow + https://wiki.archlinux.org/index.php/Syslinux#Automatic_Install +EOF +} -==> The syslinux-install_update script does not currently support EFI install +post_install() { + [ -f /boot/syslinux/SYSLINUX_AUTOUPDATE ] || show_bios_autoupdate_msg + [ -d /sys/firmware/efi ] && show_efi_msg -EOF - + true } post_upgrade() { - ## auto-update syslinux if /boot/syslinux/SYSLINUX_AUTOUPDATE exists /usr/bin/syslinux-install_update -s - + post_install - } - -# vim:set ts=2 sw=2 et: |