Config.in 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. menu "Target filesystem options"
  2. config BR2_ROOTFS_PREFIX
  3. string "Custom root fs prefix"
  4. default "rootfs"
  5. help
  6. Add a custom string to the beginning of the root file system name.
  7. config BR2_ROOTFS_SUFFIX
  8. string "Custom root fs suffix"
  9. default ""
  10. help
  11. Add a custom string to the end of the root file system name.
  12. comment "filesystem for target device"
  13. source "target/cramfs/Config.in"
  14. source "target/cloop/Config.in"
  15. source "target/ext2/Config.in"
  16. source "target/jffs2/Config.in"
  17. source "target/ubifs/Config.in"
  18. source "target/squashfs/Config.in"
  19. source "target/tar/Config.in"
  20. source "target/cpio/Config.in"
  21. source "target/iso9660/Config.in"
  22. source "target/initramfs/Config.in"
  23. source "target/romfs/Config.in"
  24. comment "bootloader for target device"
  25. source "target/x86/grub/Config.in"
  26. #source "target/x86/grub2/Config.in"
  27. source "target/x86/syslinux/Config.in"
  28. source "target/powerpc/yaboot/Config.in"
  29. source "target/u-boot/Config.in"
  30. endmenu
  31. menu "Kernel"
  32. choice
  33. prompt "Kernel type"
  34. default BR2_KERNEL_none
  35. config BR2_KERNEL_none
  36. bool "none"
  37. help
  38. Do not build a kernel
  39. config BR2_KERNEL_LINUX_ADVANCED
  40. bool "linux (Advanced configuration)"
  41. select BR2_PACKAGE_LINUX
  42. help
  43. The Linux kernel - Advanced Configuration.
  44. http://www.kernel.org/
  45. Note: Requires kernel-headers >= 2.6.19 since the other
  46. kernel headers are just that (headers) and not full
  47. kernels. This is a feature.
  48. # The kernel with the same version as linux headers cannot be compiled
  49. # when using an external toolchain, because the linux headers are not
  50. # handled by Buildroot in this case.
  51. if BR2_TOOLCHAIN_SOURCE
  52. config BR2_KERNEL_LINUX
  53. bool "linux (Same version as linux headers)"
  54. select BR2_PACKAGE_LINUX
  55. help
  56. The Linux kernel.
  57. http://www.kernel.org/
  58. Note: Requires kernel-headers >= 2.6.19 since the other
  59. kernel headers are just that (headers) and not full
  60. kernels. This is a feature.
  61. endif
  62. config BR2_KERNEL_HURD
  63. bool "hurd"
  64. help
  65. GNU/Hurd kernel
  66. endchoice
  67. config BR2_PACKAGE_LINUX
  68. bool
  69. if BR2_PACKAGE_LINUX
  70. source "target/linux/Config.in"
  71. #source "target/linux/Config.in.experimental"
  72. source "target/linux/Config.in.advanced"
  73. endif
  74. if BR2_KERNEL_HURD
  75. source "target/hurd/Config.in"
  76. endif
  77. endmenu