Config.in 1.1 KB

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