make pppoe init script re-read nvram settings before restarting pppd
[openwrt/openwrt.git] / openwrt / Config.in
1 #
2
3 mainmenu "OpenWRT Configuration"
4
5 config MODULES
6 bool
7 default y
8
9 config BR2_HAVE_DOT_CONFIG
10 bool
11 default y
12
13 choice
14 prompt "Target Architecture"
15 default BR2_mipsel
16 help
17 Stuff
18
19 config BR2_arm
20 bool "arm"
21
22 config BR2_armeb
23 bool "armeb"
24
25 config BR2_cris
26 bool "cris"
27
28 config BR2_i386
29 bool "i386"
30
31 config BR2_m68k
32 bool "m68k"
33
34 config BR2_mips
35 bool "mips"
36
37 config BR2_mipsel
38 bool "mipsel"
39
40 config BR2_powerpc
41 bool "powerpc"
42
43 config BR2_sh3
44 bool "sh3"
45
46 config BR2_sh3eb
47 bool "sh3eb"
48
49 config BR2_sh4
50 bool "sh4"
51
52 config BR2_sh4eb
53 bool "sh4eb"
54
55 config BR2_sparc
56 bool "sparc"
57
58 endchoice
59
60 config BR2_ARCH
61 string
62 default "arm" if BR2_arm
63 default "armeb" if BR2_armeb
64 default "cris" if BR2_cris
65 default "i386" if BR2_i386
66 default "m68k" if BR2_m68k
67 default "mips" if BR2_mips
68 default "mipsel" if BR2_mipsel
69 default "powerpc" if BR2_powerpc
70 default "sh3" if BR2_sh3
71 default "sh3eb" if BR2_sh3eb
72 default "sh4" if BR2_sh4
73 default "sh4eb" if BR2_sh4eb
74 default "sparc" if BR2_sparc
75
76
77 menu "Build options"
78
79 config BR2_WGET
80 string "Wget command"
81 default "wget --passive-ftp -nd"
82
83 config BR2_TAR_VERBOSITY
84 bool "Tar verbose"
85 default n
86
87 config BR2_STAGING_DIR
88 string "Toolchain and header file location?"
89 default "$(BASE_DIR)/staging_dir_$(ARCH)$(ARCH_FPU_SUFFIX)"
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 "$(BASE_DIR)/staging_dir_$(ARCH)$(ARCH_FPU_SUFFIX)".
99
100 config BR2_JLEVEL
101 int "Number of jobs to run simultaneously"
102 default "1"
103 help
104 Number of jobs to run simultanesouly
105
106 endmenu
107
108 source "toolchain/Config.in"
109 source "package/Config.in"
110 source "target/Config.in"