source: freewrt/Config.in.devel@ 2406422

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

remove build options

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

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