mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-02 21:48:20 +03:00
Currently it is possible to choose either, both or none of the pxelinux or isolinux images. But it does not make sense to build none or both, as we need at least one to boot the target, and the target can not use more than one. So, we need one and only one image to be selected at once. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Thomas Lundquist <thomasez@redpill-linpro.com> Cc: Frank Hunleth <fhunleth@troodon-software.com> Cc: Arnout Vandecappelle <arnout@mind.be> Tested-by: Frank Hunleth <fhunleth@troodon-software.com> Tested-by: Romain Naour <romain.naour@openwide.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
25 lines
441 B
Plaintext
25 lines
441 B
Plaintext
config BR2_TARGET_SYSLINUX
|
|
bool "syslinux"
|
|
depends on BR2_i386 || BR2_x86_64
|
|
select BR2_HOSTARCH_NEEDS_IA32_COMPILER
|
|
help
|
|
The syslinux bootloader for x86 systems.
|
|
This includes: syslinux, pxelinux, extlinux.
|
|
|
|
http://syslinux.org
|
|
|
|
if BR2_TARGET_SYSLINUX
|
|
|
|
choice
|
|
bool "Image to install"
|
|
|
|
config BR2_TARGET_SYSLINUX_ISOLINUX
|
|
bool "Install isolinux"
|
|
|
|
config BR2_TARGET_SYSLINUX_PXELINUX
|
|
bool "Install pxelinux"
|
|
|
|
endchoice
|
|
|
|
endif
|