add preliminary support for the XScale port, generic endianness indication
[15.05/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
36 config BR2_arm
37         tristate
38
39 config BR2_cris
40         tristate
41
42 config BR2_m68k
43         tristate
44         select BR2_BIG_ENDIAN
45
46 config BR2_powerpc
47         tristate
48         select BR2_BIG_ENDIAN
49
50 config BR2_sh3
51         tristate
52
53 config BR2_sh3eb
54         tristate
55         select BR2_BIG_ENDIAN
56
57 config BR2_sh4
58         tristate
59
60 config BR2_sh4eb
61         tristate
62         select BR2_BIG_ENDIAN
63
64 config BR2_sparc
65         tristate
66         select BR2_BIG_ENDIAN
67
68 endif
69
70 config BR2_ARCH
71         string
72         default "arm"     if BR2_arm
73         default "armeb"   if BR2_armeb
74         default "cris"    if BR2_cris
75         default "i386"    if BR2_i386
76         default "m68k"    if BR2_m68k
77         default "mips"    if BR2_mips
78         default "mipsel"  if BR2_mipsel || !CONFIG_DEVEL
79         default "powerpc" if BR2_powerpc
80         default "sh3"     if BR2_sh3
81         default "sh3eb"   if BR2_sh3eb
82         default "sh4"     if BR2_sh4
83         default "sh4eb"   if BR2_sh4eb
84         default "sparc"   if BR2_sparc
85
86
87 config BR2_WGET
88         string 
89         default "wget --passive-ftp -nd"
90
91 config BR2_TAR_VERBOSITY
92         bool 
93         default n
94
95 config BR2_JLEVEL
96         int
97         default "1"
98
99 source "target/Config.in"
100 source "toolchain/Config.in"
101 source "package/Config.in"
102 source "target/linux/Config.in"