source: freewrt/Config.in@ f855d85

Last change on this file since f855d85 was fc2c86d, checked in by Waldemar Brodkorb <wbx@…>, 19 years ago

activate nfs for netgear, AVOID MTD UPDATES, IT WILL KILL YOUR NETGEAR, WILL BE FIXED SOON

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

  • Property mode set to 100644
File size: 3.3 KB
Line 
1# $FreeWRT$
2#-
3# This file is part of the FreeWRT project. FreeWRT is copyrighted
4# material, please see the LICENCE file in the top-level directory
5# or at http://www.freewrt.org/licence for details.
6
7mainmenu "FreeWRT Configuration"
8
9config MODULES
10 bool
11 default y
12
13# this line is magic; do not remove it
14# certain make rules depend on its existence
15# and the name FWRT_HAVE_DOT_CONFIG is hard-coded
16config FWRT_HAVE_DOT_CONFIG
17 bool
18 default y
19
20config FWRT_BIG_ENDIAN
21 tristate
22
23# Supported architectures
24
25config FWRT_i386
26 tristate
27
28config FWRT_mips
29 tristate
30 select FWRT_BIG_ENDIAN
31
32config FWRT_mipsel
33 tristate
34
35config FWRT_armeb
36 tristate
37 select FWRT_BIG_ENDIAN
38
39config FWRT_mips64
40 tristate
41 select FWRT_BIG_ENDIAN
42
43config FWRT_arm
44 tristate
45
46config FWRT_cris
47 tristate
48
49config FWRT_m68k
50 tristate
51 select FWRT_BIG_ENDIAN
52
53config FWRT_powerpc
54 tristate
55 select FWRT_BIG_ENDIAN
56
57config FWRT_sh3
58 tristate
59
60config FWRT_sh3eb
61 tristate
62 select FWRT_BIG_ENDIAN
63
64config FWRT_sh4
65 tristate
66
67config FWRT_sh4eb
68 tristate
69 select FWRT_BIG_ENDIAN
70
71config FWRT_sparc
72 tristate
73 select FWRT_BIG_ENDIAN
74
75config FWRT_ARCH
76 string
77 default "arm" if FWRT_arm
78 default "armeb" if FWRT_armeb
79 default "cris" if FWRT_cris
80 default "i386" if FWRT_i386
81 default "m68k" if FWRT_m68k
82 default "mips" if FWRT_mips
83 default "mipsel" if FWRT_mipsel
84 default "mips64" if FWRT_mips64
85 default "powerpc" if FWRT_powerpc
86 default "sh3" if FWRT_sh3
87 default "sh3eb" if FWRT_sh3eb
88 default "sh4" if FWRT_sh4
89 default "sh4eb" if FWRT_sh4eb
90 default "sparc" if FWRT_sparc
91
92
93config FWRT_WGET
94 string
95 default "wget --passive-ftp -nd"
96
97config FWRT_JLEVEL
98 int
99 default "1"
100
101config FWRT_LINUX_2_4
102 bool
103config FWRT_LINUX_2_6
104 bool
105config FWRT_LINUX_2_4_BRCM
106 bool
107config FWRT_LINUX_2_6_BRCM
108 bool
109config FWRT_LINUX_2_4_RB
110 bool
111config FWRT_LINUX_2_6_RB
112 bool
113config FWRT_LINUX_2_4_X86
114 bool
115config FWRT_LINUX_2_6_X86
116 bool
117config FWRT_LINUX_2_4_X86
118 bool
119
120menu "ADK configuration"
121
122config FWRT_DEVEL
123 bool "Enable development platforms"
124 default n
125 help
126 Enable platforms and boards which are in development.
127 They mostly do not work. So if you like to try, follow the
128 development and try to help.
129
130config FWRT_PREFIX
131 string "Set a prefix for firmware image file"
132 default "freewrt"
133 help
134 if you have a custom buildroot to build your own application,
135 you can set your own prefix for the firmware image file.
136
137config FWRT_USE_CCACHE
138 bool "Use ccache to speed up package re-compilation"
139 default n
140 help
141 ccache is a compiler cache. It speeds up re-compilation of C/C++ code
142 by caching previous compiles and detecting when the same compile is
143 being done again.
144 Requires ccache on your build machine.
145 The default ccache options (cache dir, size etc) are used.
146 Note: To build the toolchain with ccache, you'll have to set it up
147 for yourself (e.g. with the CC environment variable or symlinks).
148 This option is only to prefix the _cross_compile calls with ccache.
149
150config FWRT_GUI_SDK
151 bool "Build hosttools for C++ GUI framework"
152 default n
153 help
154 This will build cxxtools and tntnet for your host machine.
155 You start with a GUI project, if you have this tools installed.
156
157endmenu
158
159source "target/Config.in"
160source "package/Config.in"
Note: See TracBrowser for help on using the repository browser.