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