Config.in 895 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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_EFI
  27. bool "efi"
  28. select BR2_PACKAGE_GNU_EFI
  29. help
  30. Install the 'efi' image, to boot from an EFI environment.
  31. endchoice
  32. endif # BR2_TARGET_SYSLINUX