source: freewrt/Config.in@ 483c323

Last change on this file since 483c323 was b27da3ee, checked in by Waldemar Brodkorb <wbx@…>, 18 years ago

add some more no_kernel architectures, some are verified, some not, i get some new hardware soon, to verify the toolchain and some packages :}

git-svn-id: svn://www.freewrt.org/trunk/freewrt@3051 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_avr32
36 tristate
37 select FWRT_BIG_ENDIAN
38
39config FWRT_armeb
40 tristate
41 select FWRT_BIG_ENDIAN
42
43config FWRT_mips64
44 tristate
45 select FWRT_BIG_ENDIAN
46
47config FWRT_arm
48 tristate
49
50config FWRT_cris
51 tristate
52
53config FWRT_m68k
54 tristate
55 select FWRT_BIG_ENDIAN
56
57config FWRT_powerpc
58 tristate
59 select FWRT_BIG_ENDIAN
60
61config FWRT_sh3
62 tristate
63
64config FWRT_sh3eb
65 tristate
66 select FWRT_BIG_ENDIAN
67
68config FWRT_sh4
69 tristate
70
71config FWRT_sh4eb
72 tristate
73 select FWRT_BIG_ENDIAN
74
75config FWRT_sparc
76 tristate
77 select FWRT_BIG_ENDIAN
78
79config FWRT_ARCH
80 string
81 default "arm" if FWRT_arm
82 default "armeb" if FWRT_armeb
83 default "avr32" if FWRT_avr32
84 default "cris" if FWRT_cris
85 default "i386" if FWRT_i386
86 default "m68k" if FWRT_m68k
87 default "mips" if FWRT_mips
88 default "mipsel" if FWRT_mipsel
89 default "mips64" if FWRT_mips64
90 default "powerpc" if FWRT_powerpc
91 default "sh3" if FWRT_sh3
92 default "sh3eb" if FWRT_sh3eb
93 default "sh4" if FWRT_sh4
94 default "sh4eb" if FWRT_sh4eb
95 default "sparc" if FWRT_sparc
96
97
98config FWRT_JLEVEL
99 int
100 default "1"
101
102config FWRT_LINUX_2_4
103 bool
104config FWRT_LINUX_2_6
105 bool
106config FWRT_LINUX_2_4_BRCM
107 bool
108config FWRT_LINUX_2_6_BRCM
109 bool
110config FWRT_LINUX_2_4_RB
111 bool
112config FWRT_LINUX_2_6_RB
113 bool
114config FWRT_LINUX_2_4_X86
115 bool
116config FWRT_LINUX_2_6_X86
117 bool
118config FWRT_LINUX_2_4_X86
119 bool
120
121menu "ADK configuration"
122
123config FWRT_DEVEL
124 bool "Enable development platforms"
125 default n
126 help
127 Enable platforms and boards which are in development.
128 They mostly do not work. So if you like to try, follow the
129 development and try to help.
130
131config FWRT_PREFIX
132 string "Set a prefix for firmware image file"
133 default "freewrt"
134 help
135 if you have a custom buildroot to build your own application,
136 you can set your own prefix for the firmware image file.
137
138config FWRT_USE_CCACHE
139 bool "Use ccache to speed up package re-compilation"
140 default n
141 help
142 ccache is a compiler cache. It speeds up re-compilation of C/C++ code
143 by caching previous compiles and detecting when the same compile is
144 being done again.
145 Requires ccache on your build machine.
146 The default ccache options (cache dir, size etc) are used.
147 Note: To build the toolchain with ccache, you'll have to set it up
148 for yourself (e.g. with the CC environment variable or symlinks).
149 This option is only to prefix the _cross_compile calls with ccache.
150
151config FWRT_GUI_SDK
152 bool "Build hosttools for C++ GUI framework"
153 default n
154 help
155 This will build cxxtools and tntnet for your host machine.
156 You start with a GUI project, if you have this tools installed.
157
158endmenu
159
160source "target/Config.in"
161source "package/Config.in"
Note: See TracBrowser for help on using the repository browser.