2
1

Config.in 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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_sh3
  28. bool "sh3"
  29. config BR2_sh3eb
  30. bool "sh3eb"
  31. config BR2_sh4
  32. bool "sh4"
  33. config BR2_sh4eb
  34. bool "sh4eb"
  35. config BR2_sparc
  36. bool "sparc"
  37. endchoice
  38. config BR2_ARCH
  39. string
  40. default "arm" if BR2_arm
  41. default "armeb" if BR2_armeb
  42. default "cris" if BR2_cris
  43. default "i386" if BR2_i386
  44. default "m68k" if BR2_m68k
  45. default "mips" if BR2_mips
  46. default "mipsel" if BR2_mipsel
  47. default "powerpc" if BR2_powerpc
  48. default "sh3" if BR2_sh3
  49. default "sh3eb" if BR2_sh3eb
  50. default "sh4" if BR2_sh4
  51. default "sh4eb" if BR2_sh4eb
  52. default "sparc" if BR2_sparc
  53. menu "Build options"
  54. config BR2_WGET
  55. string "Wget command"
  56. default "wget --passive-ftp -nd"
  57. config BR2_SVN
  58. string
  59. default "Subversion (svn) checkout command"
  60. config BR2_TAR_VERBOSITY
  61. bool "Tar verbose"
  62. default n
  63. config BR2_STAGING_DIR
  64. string "Toolchain and header file location?"
  65. default "$(BUILD_DIR)/staging_dir"
  66. help
  67. This is the location where the toolchain will be installed. The
  68. toolchain will not work if it is moved from this location.
  69. Therefore, if you wish to package up a uClibc toolchain, it is
  70. important that is is set to the final location where the toolchain
  71. will be used.
  72. Most people will leave this set to the default value of
  73. "$(BUILD_DIR)/staging_dir".
  74. config BR2_JLEVEL
  75. int "Number of jobs to run simultaneously"
  76. default "1"
  77. help
  78. Number of jobs to run simultanesouly
  79. endmenu
  80. source "toolchain/Config.in"
  81. source "package/Config.in"
  82. source "target/Config.in"