python-psutil: bump to version 4.3.0
[buildroot-gz.git] / boot / syslinux / Config.in
blob6067e9ceb3b4148265330903d0ba90307e1ca87f
1 config BR2_TARGET_SYSLINUX
2         bool "syslinux"
3         depends on BR2_i386 || BR2_x86_64
4         select BR2_HOSTARCH_NEEDS_IA32_COMPILER
5         # Make sure at least one of the flavors is installed
6         select BR2_TARGET_SYSLINUX_ISOLINUX \
7                 if !BR2_TARGET_SYSLINUX_PXELINUX && \
8                    !BR2_TARGET_SYSLINUX_MBR && \
9                    !BR2_TARGET_SYSLINUX_EFI
10         help
11           The syslinux bootloader for x86 systems.
12           This includes: syslinux, pxelinux, extlinux.
14           http://syslinux.org
16 if BR2_TARGET_SYSLINUX
18 config BR2_TARGET_SYSLINUX_LEGACY_BIOS
19         bool
21 config BR2_TARGET_SYSLINUX_ISOLINUX
22         bool "install isolinux"
23         select BR2_TARGET_SYSLINUX_LEGACY_BIOS
24         help
25           Install the legacy-BIOS 'isolinux' image, to boot off
26           optical media (CDROM, DVD.)
28 config BR2_TARGET_SYSLINUX_PXELINUX
29         bool "install pxelinux"
30         select BR2_TARGET_SYSLINUX_LEGACY_BIOS
31         help
32           Install the legacy-BIOS 'pxelinux' image, to boot off
33           the network using PXE.
35 config BR2_TARGET_SYSLINUX_MBR
36         bool "install mbr"
37         select BR2_TARGET_SYSLINUX_LEGACY_BIOS
38         help
39           Install the legacy-BIOS 'mbr' image, to boot off a
40           local MBR-partition (e.g. prepared with 'extlinux'
41           or 'syslinux').
43 config BR2_TARGET_SYSLINUX_EFI
44         bool "install efi"
45         select BR2_PACKAGE_GNU_EFI
46         help
47           Install the 'efi' image, to boot from an EFI environment.
50 if BR2_TARGET_SYSLINUX_LEGACY_BIOS
52 config BR2_TARGET_SYSLINUX_C32
53         string "modules to install"
54         help
55           Enter a space-separated list of .c32 modules to install.
56           Leave empty to install no module.
58 endif # BR2_TARGET_SYSLINUX_LEGACY_BIOS
60 endif # BR2_TARGET_SYSLINUX