]> Git Repo - buildroot-mgba.git/blame - Config.in
update copyright
[buildroot-mgba.git] / Config.in
CommitLineData
2d523c23
EA
1#
2
3mainmenu "Buildroot2 Configuration"
4
5config BR2_HAVE_DOT_CONFIG
6 bool
7 default y
8
9choice
10 prompt "Target Architecture"
11 default BR2_i386
12 help
13 Stuff
14
15config BR2_arm
16 bool "arm"
17
18config BR2_armeb
19 bool "armeb"
20
21config BR2_cris
22 bool "cris"
23
24config BR2_i386
25 bool "i386"
26
27config BR2_m68k
28 bool "m68k"
29
30config BR2_mips
31 bool "mips"
32
33config BR2_mipsel
34 bool "mipsel"
35
36config BR2_powerpc
37 bool "powerpc"
38
070e7c14
EA
39config BR2_sh3
40 bool "sh3"
41
42config BR2_sh3eb
43 bool "sh3eb"
44
45config BR2_sh4
2d523c23
EA
46 bool "sh4"
47
070e7c14
EA
48config BR2_sh4eb
49 bool "sh4eb"
50
2d523c23
EA
51config BR2_sparc
52 bool "sparc"
53
54endchoice
55
56config BR2_ARCH
57 string
58 default "arm" if BR2_arm
59 default "armeb" if BR2_armeb
60 default "cris" if BR2_cris
61 default "i386" if BR2_i386
62 default "m68k" if BR2_m68k
63 default "mips" if BR2_mips
64 default "mipsel" if BR2_mipsel
65 default "powerpc" if BR2_powerpc
070e7c14
EA
66 default "sh3" if BR2_sh3
67 default "sh3eb" if BR2_sh3eb
68 default "sh4" if BR2_sh4
69 default "sh4eb" if BR2_sh4eb
2d523c23
EA
70 default "sparc" if BR2_sparc
71
72
8e5fb3fb
EA
73menu "Build options"
74
2d523c23 75config BR2_WGET
8e5fb3fb 76 string "Wget command"
fb1c67c1 77 default "wget --passive-ftp -nd"
2d523c23 78
e30cf26c
EA
79config BR2_SVN
80 string
81 default "Subversion (svn) checkout command"
82
8e5fb3fb
EA
83config BR2_TAR_VERBOSITY
84 bool "Tar verbose"
85 default n
86
ba7c48f3
EA
87config BR2_STAGING_DIR
88 string "Toolchain and header file location?"
89 default "$(BUILD_DIR)/staging_dir"
90 help
91 This is the location where the toolchain will be installed.
92 Since the toolchain will not work if it is moved from this
93 location, it is important for people wishing to package up
94 a uClibc toolchain that this be set to the location in which
95 the toolchain will be used.
96
97 Most people will leave this set to the default value of
98 "$(BUILD_DIR)/staging_dir".
99
8e5fb3fb
EA
100config BR2_JLEVEL
101 int "Number of jobs to run simultaneously"
102 default "1"
103 help
104 Number of jobs to run simultanesouly
ba7c48f3 105
8e5fb3fb 106endmenu
2d523c23
EA
107
108source "toolchain/Config.in"
109
110source "package/Config.in"
111
4c4768b2 112source "target/Config.in"
2d523c23 113
This page took 0.038251 seconds and 4 git commands to generate.