source: freewrt/Config.in@ 855544c

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

disable toolchain options, dangerous settings, some OpenWrt -> FreeWRT conversion, remove some error messages about .defconfig

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

  • Property mode set to 100644
File size: 1.5 KB
Line 
1mainmenu "FreeWRT Configuration"
2
3config MODULES
4 bool
5 default y
6
7config BR2_HAVE_DOT_CONFIG
8 bool
9 default y
10
11config BR2_BIG_ENDIAN
12 tristate
13
14# Supported architectures
15
16config BR2_i386
17 tristate
18
19config BR2_mips
20 tristate
21 select BR2_BIG_ENDIAN
22
23config BR2_mipsel
24 tristate
25
26config BR2_armeb
27 tristate
28 select BR2_BIG_ENDIAN
29
30# Unsupported architectures
31
32if CONFIG_DEVEL
33config BR2_mips64
34 tristate
35 select BR2_BIG_ENDIAN
36
37config BR2_arm
38 tristate
39
40config BR2_cris
41 tristate
42
43config BR2_m68k
44 tristate
45 select BR2_BIG_ENDIAN
46
47config BR2_powerpc
48 tristate
49 select BR2_BIG_ENDIAN
50
51config BR2_sh3
52 tristate
53
54config BR2_sh3eb
55 tristate
56 select BR2_BIG_ENDIAN
57
58config BR2_sh4
59 tristate
60
61config BR2_sh4eb
62 tristate
63 select BR2_BIG_ENDIAN
64
65config BR2_sparc
66 tristate
67 select BR2_BIG_ENDIAN
68
69endif
70
71config BR2_ARCH
72 string
73 default "arm" if BR2_arm
74 default "armeb" if BR2_armeb
75 default "cris" if BR2_cris
76 default "i386" if BR2_i386
77 default "m68k" if BR2_m68k
78 default "mips" if BR2_mips
79 default "mipsel" if BR2_mipsel || !CONFIG_DEVEL
80 default "mips64" if BR2_mips64
81 default "powerpc" if BR2_powerpc
82 default "sh3" if BR2_sh3
83 default "sh3eb" if BR2_sh3eb
84 default "sh4" if BR2_sh4
85 default "sh4eb" if BR2_sh4eb
86 default "sparc" if BR2_sparc
87
88
89config BR2_WGET
90 string
91 default "wget --passive-ftp -nd"
92
93config BR2_TAR_VERBOSITY
94 bool
95 default n
96
97config BR2_JLEVEL
98 int
99 default "1"
100
101source "target/Config.in"
102source "target/linux/Config.in"
103source "package/Config.in"
104source "toolchain/Config.in"
Note: See TracBrowser for help on using the repository browser.