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