Config.in 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. http://syslinux.org
  9. if BR2_TARGET_SYSLINUX
  10. config BR2_TARGET_SYSLINUX_LEGACY_BIOS
  11. bool
  12. choice
  13. bool "Image to install"
  14. config BR2_TARGET_SYSLINUX_ISOLINUX
  15. bool "isolinux"
  16. select BR2_TARGET_SYSLINUX_LEGACY_BIOS
  17. help
  18. Install the legacy-BIOS 'isolinux' image, to boot off
  19. optical media (CDROM, DVD.)
  20. config BR2_TARGET_SYSLINUX_PXELINUX
  21. bool "pxelinux"
  22. select BR2_TARGET_SYSLINUX_LEGACY_BIOS
  23. help
  24. Install the legacy-BIOS 'pxelinux' image, to boot off
  25. the network using PXE.
  26. config BR2_TARGET_SYSLINUX_MBR
  27. bool "mbr"
  28. select BR2_TARGET_SYSLINUX_LEGACY_BIOS
  29. help
  30. Install the legacy-BIOS 'mbr' image, to boot off a
  31. local MBR-partition (e.g. prepared with 'extlinux'
  32. or 'syslinux').
  33. config BR2_TARGET_SYSLINUX_EFI
  34. bool "efi"
  35. select BR2_PACKAGE_GNU_EFI
  36. help
  37. Install the 'efi' image, to boot from an EFI environment.
  38. endchoice
  39. if BR2_TARGET_SYSLINUX_LEGACY_BIOS
  40. config BR2_TARGET_SYSLINUX_C32
  41. string "modules to install"
  42. help
  43. Enter a space-separated list of .c32 modules to install.
  44. Leave empty to install no module.
  45. endif # BR2_TARGET_SYSLINUX_LEGACY_BIOS
  46. endif # BR2_TARGET_SYSLINUX