blob: f7525b87611fc709caf9f988721000c7a7c8f62e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
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
|