]>
Commit | Line | Data |
---|---|---|
2d523c23 EA |
1 | # |
2 | ||
3 | mainmenu "Buildroot2 Configuration" | |
4 | ||
5 | config BR2_HAVE_DOT_CONFIG | |
6 | bool | |
7 | default y | |
8 | ||
9 | choice | |
10 | prompt "Target Architecture" | |
11 | default BR2_i386 | |
12 | help | |
13 | Stuff | |
14 | ||
15 | config BR2_arm | |
16 | bool "arm" | |
17 | ||
18 | config BR2_armeb | |
19 | bool "armeb" | |
20 | ||
21 | config BR2_cris | |
22 | bool "cris" | |
23 | ||
24 | config BR2_i386 | |
25 | bool "i386" | |
26 | ||
27 | config BR2_m68k | |
28 | bool "m68k" | |
29 | ||
30 | config BR2_mips | |
31 | bool "mips" | |
32 | ||
33 | config BR2_mipsel | |
34 | bool "mipsel" | |
35 | ||
36 | config BR2_powerpc | |
37 | bool "powerpc" | |
38 | ||
070e7c14 EA |
39 | config BR2_sh3 |
40 | bool "sh3" | |
41 | ||
42 | config BR2_sh3eb | |
43 | bool "sh3eb" | |
44 | ||
45 | config BR2_sh4 | |
2d523c23 EA |
46 | bool "sh4" |
47 | ||
070e7c14 EA |
48 | config BR2_sh4eb |
49 | bool "sh4eb" | |
50 | ||
2d523c23 EA |
51 | config BR2_sparc |
52 | bool "sparc" | |
53 | ||
54 | endchoice | |
55 | ||
56 | config 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 |
73 | menu "Build options" |
74 | ||
2d523c23 | 75 | config BR2_WGET |
8e5fb3fb | 76 | string "Wget command" |
fb1c67c1 | 77 | default "wget --passive-ftp -nd" |
2d523c23 | 78 | |
e30cf26c EA |
79 | config BR2_SVN |
80 | string | |
81 | default "Subversion (svn) checkout command" | |
82 | ||
8e5fb3fb EA |
83 | config BR2_TAR_VERBOSITY |
84 | bool "Tar verbose" | |
85 | default n | |
86 | ||
ba7c48f3 EA |
87 | config 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 |
100 | config 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 | 106 | endmenu |
2d523c23 EA |
107 | |
108 | source "toolchain/Config.in" | |
109 | ||
110 | source "package/Config.in" | |
111 | ||
4c4768b2 | 112 | source "target/Config.in" |
2d523c23 | 113 |