Config.in 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. #
  2. mainmenu "Buildroot2 Configuration"
  3. config BR2_HAVE_DOT_CONFIG
  4. bool
  5. default y
  6. choice
  7. prompt "Target Architecture"
  8. default BR2_i386
  9. help
  10. Stuff
  11. config BR2_arm
  12. bool "arm"
  13. config BR2_armeb
  14. bool "armeb"
  15. config BR2_cris
  16. bool "cris"
  17. config BR2_i386
  18. bool "i386"
  19. config BR2_m68k
  20. bool "m68k"
  21. config BR2_mips
  22. bool "mips"
  23. config BR2_mipsel
  24. bool "mipsel"
  25. config BR2_powerpc
  26. bool "powerpc"
  27. config BR2_sh
  28. bool "sh"
  29. config BR2_sparc
  30. bool "sparc"
  31. endchoice
  32. #
  33. # Keep the variants seperate, there's no need to clutter everything else.
  34. # sh is fairly "special" in this regard, as virtually everyone else has
  35. # things kept down to a _sensible_ number of target variants. No such
  36. # luck for sh..
  37. #
  38. choice
  39. prompt "Target Architecture Variant"
  40. depends BR2_sh
  41. default BR2_sh4
  42. config BR2_sh2a_nofpueb
  43. bool "sh2a_nofpueb"
  44. config BR2_sh2eb
  45. bool "sh2eb"
  46. config BR2_sh3
  47. bool "sh3"
  48. config BR2_sh3eb
  49. bool "sh3eb"
  50. config BR2_sh4
  51. bool "sh4"
  52. config BR2_sh4eb
  53. bool "sh4eb"
  54. endchoice
  55. config BR2_ARCH
  56. string
  57. default "arm" if BR2_arm
  58. default "armeb" if BR2_armeb
  59. default "cris" if BR2_cris
  60. default "i386" if BR2_i386
  61. default "m68k" if BR2_m68k
  62. default "mips" if BR2_mips
  63. default "mipsel" if BR2_mipsel
  64. default "powerpc" if BR2_powerpc
  65. default "sh2a_nofpueb" if BR2_sh2a_nofpueb
  66. default "sh2eb" if BR2_sh2eb
  67. default "sh3" if BR2_sh3
  68. default "sh3eb" if BR2_sh3eb
  69. default "sh4" if BR2_sh4
  70. default "sh4eb" if BR2_sh4eb
  71. default "sparc" if BR2_sparc
  72. menu "Build options"
  73. config BR2_WGET
  74. string "Wget command"
  75. default "wget --passive-ftp -nd"
  76. config BR2_SVN
  77. string "Subversion (svn) checkout command"
  78. default "svn co"
  79. config BR2_TAR_VERBOSITY
  80. bool "Tar verbose"
  81. default n
  82. config BR2_SOURCEFORGE_MIRROR
  83. string "Sourceforge mirror site"
  84. default "easynews"
  85. help
  86. Sourceforge has a system of mirror sites. Some sites may be closer
  87. to your location, and sometimes mirror sites go down and are no longer
  88. available. This option allows you to select your preferred Sourceforge
  89. mirror site.
  90. config BR2_STAGING_DIR
  91. string "Toolchain and header file location?"
  92. default "$(BUILD_DIR)/staging_dir"
  93. help
  94. This is the location where the toolchain will be installed. The
  95. toolchain will not work if it is moved from this location.
  96. Therefore, if you wish to package up a uClibc toolchain, it is
  97. important that is is set to the final location where the toolchain
  98. will be used.
  99. Most people will leave this set to the default value of
  100. "$(BUILD_DIR)/staging_dir".
  101. config BR2_JLEVEL
  102. int "Number of jobs to run simultaneously"
  103. default "1"
  104. help
  105. Number of jobs to run simultanesouly
  106. endmenu
  107. source "toolchain/Config.in"
  108. source "package/Config.in"
  109. source "target/Config.in"