Config.in 441 B

123456789101112131415161718192021222324
  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. choice
  11. bool "Image to install"
  12. config BR2_TARGET_SYSLINUX_ISOLINUX
  13. bool "Install isolinux"
  14. config BR2_TARGET_SYSLINUX_PXELINUX
  15. bool "Install pxelinux"
  16. endchoice
  17. endif