diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2014-05-02 19:10:35 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-05-03 21:57:40 +0200 |
commit | 4fb1d4b3e3eb58bc6207d50d2dcfac28ff3bab03 (patch) | |
tree | b0454f411d6b4b90c33928b7af7129142e87df3c /boot/syslinux/Config.in | |
parent | 93be225d928cf659c7a2dffd9bb3ce165a1b50b5 (diff) | |
download | buildroot-4fb1d4b3e3eb58bc6207d50d2dcfac28ff3bab03.tar.gz buildroot-4fb1d4b3e3eb58bc6207d50d2dcfac28ff3bab03.zip |
boot/syslinux: add option to install the EFI image
syslinux can now also build an EFI application.
If the target is 64-bit, we build the 64-bit EFI app,
otherwise we build the 32-bit EFI app.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Frank Hunleth <fhunleth@troodon-software.com>
Tested-by: Frank Hunleth <fhunleth@troodon-software.com>
Tested-by: Romain Naour <romain.naour@openwide.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'boot/syslinux/Config.in')
-rw-r--r-- | boot/syslinux/Config.in | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/boot/syslinux/Config.in b/boot/syslinux/Config.in index 7263128974..5f0fe978fa 100644 --- a/boot/syslinux/Config.in +++ b/boot/syslinux/Config.in @@ -10,21 +10,32 @@ config BR2_TARGET_SYSLINUX if BR2_TARGET_SYSLINUX +config BR2_TARGET_SYSLINUX_LEGACY_BIOS + bool + choice bool "Image to install" config BR2_TARGET_SYSLINUX_ISOLINUX bool "isolinux" + select BR2_TARGET_SYSLINUX_LEGACY_BIOS help Install the legacy-BIOS 'isolinux' image, to boot off optical media (CDROM, DVD.) config BR2_TARGET_SYSLINUX_PXELINUX bool "pxelinux" + select BR2_TARGET_SYSLINUX_LEGACY_BIOS help Install the legacy-BIOS 'pxelinux' image, to boot off the network using PXE. +config BR2_TARGET_SYSLINUX_EFI + bool "efi" + select BR2_PACKAGE_GNU_EFI + help + Install the 'efi' image, to boot from an EFI environment. + endchoice endif # BR2_TARGET_SYSLINUX |