Update defaults
[openwrt/staging/dedeckeh.git] / openwrt / Config.in
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_mips
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
39 config BR2_sh3
40 bool "sh3"
41
42 config BR2_sh3eb
43 bool "sh3eb"
44
45 config BR2_sh4
46 bool "sh4"
47
48 config BR2_sh4eb
49 bool "sh4eb"
50
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
66 default "sh3" if BR2_sh3
67 default "sh3eb" if BR2_sh3eb
68 default "sh4" if BR2_sh4
69 default "sh4eb" if BR2_sh4eb
70 default "sparc" if BR2_sparc
71
72
73 menu "Build options"
74
75 config BR2_WGET
76 string "Wget command"
77 default "wget --passive-ftp -nd"
78
79 config BR2_TAR_VERBOSITY
80 bool "Tar verbose"
81 default n
82
83 config BR2_STAGING_DIR
84 string "Toolchain and header file location?"
85 default "$(BUILD_DIR)/staging_dir"
86 help
87 This is the location where the toolchain will be installed.
88 Since the toolchain will not work if it is moved from this
89 location, it is important for people wishing to package up
90 a uClibc toolchain that this be set to the location in which
91 the toolchain will be used.
92
93 Most people will leave this set to the default value of
94 "$(BUILD_DIR)/staging_dir".
95
96 config BR2_JLEVEL
97 int "Number of jobs to run simultaneously"
98 default "1"
99 help
100 Number of jobs to run simultanesouly
101
102 endmenu
103
104 source "toolchain/Config.in"
105
106 source "package/Config.in"
107
108 source "target/Config.in"
109