Config.in 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. menu "Target filesystem options"
  2. comment "filesystem for target device"
  3. source "target/cramfs/Config.in"
  4. source "target/cloop/Config.in"
  5. source "target/ext2/Config.in"
  6. source "target/jffs2/Config.in"
  7. source "target/squashfs/Config.in"
  8. source "target/tar/Config.in"
  9. source "target/cpio/Config.in"
  10. source "target/iso9660/Config.in"
  11. source "target/initramfs/Config.in"
  12. comment "bootloader for target device"
  13. source "target/x86/grub/Config.in"
  14. #source "target/x86/grub2/Config.in"
  15. source "target/x86/syslinux/Config.in"
  16. source "target/powerpc/yaboot/Config.in"
  17. endmenu
  18. menu "Kernel"
  19. choice
  20. prompt "Kernel type"
  21. default BR2_KERNEL_LINUX_ADVANCED if BR2_TARGET_ATMEL
  22. default BR2_KERNEL_LINUX if !BR2_TARGET_ATMEL
  23. config BR2_KERNEL_none
  24. bool "none"
  25. help
  26. Do not build a kernel
  27. config BR2_KERNEL_LINUX_ADVANCED
  28. bool "linux (Advanced configuration)"
  29. select BR2_PACKAGE_LINUX
  30. help
  31. The Linux kernel - Advanced Configuration.
  32. http://www.kernel.org/
  33. Note: Requires kernel-headers >= 2.6.19 since the other
  34. kernel headers are just that (headers) and not full
  35. kernels. This is a feature.
  36. config BR2_KERNEL_LINUX
  37. bool "linux (Same version as linux headers)"
  38. select BR2_PACKAGE_LINUX
  39. help
  40. The Linux kernel.
  41. http://www.kernel.org/
  42. Note: Requires kernel-headers >= 2.6.19 since the other
  43. kernel headers are just that (headers) and not full
  44. kernels. This is a feature.
  45. config BR2_KERNEL_HURD
  46. bool "hurd"
  47. help
  48. GNU/Hurd kernel
  49. endchoice
  50. config BR2_PACKAGE_LINUX
  51. bool
  52. default n
  53. if BR2_PACKAGE_LINUX
  54. source "target/linux/Config.in"
  55. #source "target/linux/Config.in.experimental"
  56. source "target/linux/Config.in.advanced"
  57. endif
  58. if BR2_KERNEL_HURD
  59. source "target/hurd/Config.in"
  60. endif
  61. endmenu