Config.in 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. menu "Bootloaders"
  2. source "target/x86/grub/Config.in"
  3. #source "target/x86/grub2/Config.in"
  4. source "target/x86/syslinux/Config.in"
  5. source "target/powerpc/yaboot/Config.in"
  6. source "target/u-boot/Config.in"
  7. endmenu
  8. menu "Kernel"
  9. choice
  10. prompt "Kernel type"
  11. default BR2_KERNEL_none
  12. config BR2_KERNEL_none
  13. bool "none"
  14. help
  15. Do not build a kernel
  16. config BR2_KERNEL_LINUX_ADVANCED
  17. bool "linux (Advanced configuration)"
  18. select BR2_PACKAGE_LINUX
  19. help
  20. The Linux kernel - Advanced Configuration.
  21. http://www.kernel.org/
  22. Note: Requires kernel-headers >= 2.6.19 since the other
  23. kernel headers are just that (headers) and not full
  24. kernels. This is a feature.
  25. # The kernel with the same version as linux headers cannot be compiled
  26. # when using an external toolchain, because the linux headers are not
  27. # handled by Buildroot in this case.
  28. if BR2_TOOLCHAIN_BUILDROOT
  29. config BR2_KERNEL_LINUX
  30. bool "linux (Same version as linux headers)"
  31. select BR2_PACKAGE_LINUX
  32. help
  33. The Linux kernel.
  34. http://www.kernel.org/
  35. Note: Requires kernel-headers >= 2.6.19 since the other
  36. kernel headers are just that (headers) and not full
  37. kernels. This is a feature.
  38. endif
  39. endchoice
  40. config BR2_PACKAGE_LINUX
  41. bool
  42. if BR2_PACKAGE_LINUX
  43. source "target/linux/Config.in"
  44. source "target/linux/Config.in.advanced"
  45. endif
  46. endmenu