source: freewrt/Config.in@ 475ad56

freewrt_1_0 freewrt_2_0
Last change on this file since 475ad56 was 475ad56, checked in by Waldemar Brodkorb <wbx@…>, 20 years ago

add OpenWrt trunk revision 3830.

git-svn-id: svn://www.freewrt.org/trunk/freewrt@1 afb5a338-a214-0410-bd46-81f09a774fd1

  • Property mode set to 100644
File size: 1.5 KB
Line 
1#
2
3mainmenu "OpenWrt Configuration"
4
5config MODULES
6 bool
7 default y
8
9config BR2_HAVE_DOT_CONFIG
10 bool
11 default y
12
13config BR2_BIG_ENDIAN
14 tristate
15
16# Supported architectures
17
18config BR2_i386
19 tristate
20
21config BR2_mips
22 tristate
23 select BR2_BIG_ENDIAN
24
25config BR2_mipsel
26 tristate
27
28config BR2_armeb
29 tristate
30 select BR2_BIG_ENDIAN
31
32# Unsupported architectures
33
34if CONFIG_DEVEL
35config BR2_mips64
36 tristate
37 select BR2_BIG_ENDIAN
38
39config BR2_arm
40 tristate
41
42config BR2_cris
43 tristate
44
45config BR2_m68k
46 tristate
47 select BR2_BIG_ENDIAN
48
49config BR2_powerpc
50 tristate
51 select BR2_BIG_ENDIAN
52
53config BR2_sh3
54 tristate
55
56config BR2_sh3eb
57 tristate
58 select BR2_BIG_ENDIAN
59
60config BR2_sh4
61 tristate
62
63config BR2_sh4eb
64 tristate
65 select BR2_BIG_ENDIAN
66
67config BR2_sparc
68 tristate
69 select BR2_BIG_ENDIAN
70
71endif
72
73config 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
91config BR2_WGET
92 string
93 default "wget --passive-ftp -nd"
94
95config BR2_TAR_VERBOSITY
96 bool
97 default n
98
99config BR2_JLEVEL
100 int
101 default "1"
102
103source "target/Config.in"
104source "toolchain/Config.in"
105source "package/Config.in"
106source "target/linux/Config.in"
Note: See TracBrowser for help on using the repository browser.