Blame view

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