source: freewrt/Config.in@ fdd4f59

freewrt_1_0 freewrt_2_0
Last change on this file since fdd4f59 was c04ece1, checked in by Thorsten Glaser <tg@…>, 19 years ago

as discussed with wbx@ some 2-3 weeks ago, change
the BR2_ prefix to FWRT_

tested with a standard build (only the squashfs
image since the jffs2 didn't get built)

git-svn-id: svn://www.freewrt.org/trunk/freewrt@360 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 FWRT_HAVE_DOT_CONFIG
8 bool
9 default y
10
11config FWRT_BIG_ENDIAN
12 tristate
13
14# Supported architectures
15
16config FWRT_i386
17 tristate
18
19config FWRT_mips
20 tristate
21 select FWRT_BIG_ENDIAN
22
23config FWRT_mipsel
24 tristate
25
26config FWRT_armeb
27 tristate
28 select FWRT_BIG_ENDIAN
29
30# Unsupported architectures
31
32if CONFIG_DEVEL
33config FWRT_mips64
34 tristate
35 select FWRT_BIG_ENDIAN
36
37config FWRT_arm
38 tristate
39
40config FWRT_cris
41 tristate
42
43config FWRT_m68k
44 tristate
45 select FWRT_BIG_ENDIAN
46
47config FWRT_powerpc
48 tristate
49 select FWRT_BIG_ENDIAN
50
51config FWRT_sh3
52 tristate
53
54config FWRT_sh3eb
55 tristate
56 select FWRT_BIG_ENDIAN
57
58config FWRT_sh4
59 tristate
60
61config FWRT_sh4eb
62 tristate
63 select FWRT_BIG_ENDIAN
64
65config FWRT_sparc
66 tristate
67 select FWRT_BIG_ENDIAN
68
69endif
70
71config FWRT_ARCH
72 string
73 default "arm" if FWRT_arm
74 default "armeb" if FWRT_armeb
75 default "cris" if FWRT_cris
76 default "i386" if FWRT_i386
77 default "m68k" if FWRT_m68k
78 default "mips" if FWRT_mips
79 default "mipsel" if FWRT_mipsel || !CONFIG_DEVEL
80 default "mips64" if FWRT_mips64
81 default "powerpc" if FWRT_powerpc
82 default "sh3" if FWRT_sh3
83 default "sh3eb" if FWRT_sh3eb
84 default "sh4" if FWRT_sh4
85 default "sh4eb" if FWRT_sh4eb
86 default "sparc" if FWRT_sparc
87
88
89config FWRT_WGET
90 string
91 default "wget --passive-ftp -nd"
92
93config FWRT_JLEVEL
94 int
95 default "1"
96
97config FWRT_LINUX_2_4_BRCM
98 bool
99
100source "target/Config.in"
101source "target/linux/Config.in"
102source "package/Config.in"
Note: See TracBrowser for help on using the repository browser.