remove syslinux, replaced by grub

This commit is contained in:
Tobias Powalowski 2022-01-16 16:06:05 +01:00
parent a32e50724b
commit 324bb48e90
2 changed files with 1 additions and 28 deletions

View file

@ -15,7 +15,7 @@ archboot_acpi archboot_motd archboot_memtest archboot_intel_wireless \
archboot_hwdetect block memdisk archboot_pcspkr archboot_net \ archboot_hwdetect block memdisk archboot_pcspkr archboot_net \
keyboard dmraid archboot_devicemapper archboot_mdadm mdadm_udev lvm2 archboot_lvm2 \ keyboard dmraid archboot_devicemapper archboot_mdadm mdadm_udev lvm2 archboot_lvm2 \
encrypt btrfs archboot_filesystems archboot_remote archboot_cpufreq archboot_kexec archboot_ppp archboot_xl2tpd \ encrypt btrfs archboot_filesystems archboot_remote archboot_cpufreq archboot_kexec archboot_ppp archboot_xl2tpd \
archboot_pppoe archboot_grub archboot_refind archboot_efibootmgr archboot_syslinux archboot_pciutils archboot_usbutils \ archboot_pppoe archboot_grub archboot_refind archboot_efibootmgr archboot_pciutils archboot_usbutils \
archboot_openvpn archboot_vpnc archboot_pptpclient archboot_smartmontools archboot_licenses archboot_wireless archboot_wireless_staging \ archboot_openvpn archboot_vpnc archboot_pptpclient archboot_smartmontools archboot_licenses archboot_wireless archboot_wireless_staging \
archboot_linux_atm archboot_netctl archboot_fsarchiver archboot_vim archboot_wipe archboot_testdisk archboot_ddrescue \ archboot_linux_atm archboot_netctl archboot_fsarchiver archboot_vim archboot_wipe archboot_testdisk archboot_ddrescue \
archboot_chntpw archboot_nmap archboot_tcpdump archboot_openconnect archboot_dnsmasq archboot_platform \ archboot_chntpw archboot_nmap archboot_tcpdump archboot_openconnect archboot_dnsmasq archboot_platform \

View file

@ -1,27 +0,0 @@
#!/usr/bin/env bash
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
{
apps="syslinux extlinux mtools"
for i in $apps; do
add_binary "$i"
done
symlinks="/usr/bin/mcopy /usr/bin/mattrib"
for i in $symlinks; do
add_binary "$(which $(basename $(readlink "$i")))"
add_symlink "$i" "$(which $(basename $(readlink "$i")))"
done
for i in /usr/lib/syslinux/*; do
[ -f $i ] && add_file "$i"
done
add_file "/usr/lib/gconv/gconv-modules"
add_file "/usr/lib/gconv/IBM850.so"
}
help ()
{
cat<<HELPEOF
This hook includes syslinux on an archboot image.
HELPEOF
}