Config.in 1.5 KB

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