let ipkg fail when a package file to be installed is not found
[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 config BR2_BIG_ENDIAN
14         tristate
15
16 # Supported architectures
17
18 config BR2_i386
19         tristate
20         
21 config BR2_mips
22         tristate
23         select BR2_BIG_ENDIAN
24
25 config BR2_mipsel
26         tristate
27
28 config BR2_armeb
29         tristate
30         select BR2_BIG_ENDIAN
31
32 # Unsupported architectures
33
34 if CONFIG_DEVEL
35 config BR2_mips64
36         tristate
37         select BR2_BIG_ENDIAN
38
39 config BR2_arm
40         tristate
41
42 config BR2_cris
43         tristate
44
45 config BR2_m68k
46         tristate
47         select BR2_BIG_ENDIAN
48
49 config BR2_powerpc
50         tristate
51         select BR2_BIG_ENDIAN
52
53 config BR2_sh3
54         tristate
55
56 config BR2_sh3eb
57         tristate
58         select BR2_BIG_ENDIAN
59
60 config BR2_sh4
61         tristate
62
63 config BR2_sh4eb
64         tristate
65         select BR2_BIG_ENDIAN
66
67 config BR2_sparc
68         tristate
69         select BR2_BIG_ENDIAN
70
71 endif
72
73 config BR2_ARCH
74         string
75         default "arm"     if BR2_arm
76         default "armeb"   if BR2_armeb
77         default "cris"    if BR2_cris
78         default "i386"    if BR2_i386
79         default "m68k"    if BR2_m68k
80         default "mips"    if BR2_mips
81         default "mipsel"  if BR2_mipsel || !CONFIG_DEVEL
82         default "mips64"  if BR2_mips64
83         default "powerpc" if BR2_powerpc
84         default "sh3"     if BR2_sh3
85         default "sh3eb"   if BR2_sh3eb
86         default "sh4"     if BR2_sh4
87         default "sh4eb"   if BR2_sh4eb
88         default "sparc"   if BR2_sparc
89
90
91 config BR2_WGET
92         string 
93         default "wget --passive-ftp -nd"
94
95 config BR2_TAR_VERBOSITY
96         bool 
97         default n
98
99 config BR2_JLEVEL
100         int
101         default "1"
102
103 source "target/Config.in"
104 source "toolchain/Config.in"
105 source "package/Config.in"
106 source "target/linux/Config.in"