source: freewrt/Config.in@ ca629a6

freewrt_1_0 freewrt_2_0
Last change on this file since ca629a6 was 587c2aa, checked in by Waldemar Brodkorb <wbx@…>, 19 years ago

sync dependency cleanup with trunk

git-svn-id: svn://www.freewrt.org/branches/freewrt_1_0@945 afb5a338-a214-0410-bd46-81f09a774fd1

  • Property mode set to 100644
File size: 1.4 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
30config FWRT_mips64
31 tristate
32 select FWRT_BIG_ENDIAN
33
34config FWRT_arm
35 tristate
36
37config FWRT_cris
38 tristate
39
40config FWRT_m68k
41 tristate
42 select FWRT_BIG_ENDIAN
43
44config FWRT_powerpc
45 tristate
46 select FWRT_BIG_ENDIAN
47
48config FWRT_sh3
49 tristate
50
51config FWRT_sh3eb
52 tristate
53 select FWRT_BIG_ENDIAN
54
55config FWRT_sh4
56 tristate
57
58config FWRT_sh4eb
59 tristate
60 select FWRT_BIG_ENDIAN
61
62config FWRT_sparc
63 tristate
64 select FWRT_BIG_ENDIAN
65
66config FWRT_ARCH
67 string
68 default "arm" if FWRT_arm
69 default "armeb" if FWRT_armeb
70 default "cris" if FWRT_cris
71 default "i386" if FWRT_i386
72 default "m68k" if FWRT_m68k
73 default "mips" if FWRT_mips
74 default "mipsel" if FWRT_mipsel
75 default "mips64" if FWRT_mips64
76 default "powerpc" if FWRT_powerpc
77 default "sh3" if FWRT_sh3
78 default "sh3eb" if FWRT_sh3eb
79 default "sh4" if FWRT_sh4
80 default "sh4eb" if FWRT_sh4eb
81 default "sparc" if FWRT_sparc
82
83
84config FWRT_WGET
85 string
86 default "wget --passive-ftp -nd"
87
88config FWRT_JLEVEL
89 int
90 default "1"
91
92config FWRT_LINUX_2_4_BRCM
93 bool
94
95source "target/Config.in"
96source "target/linux/Config.in"
97source "package/Config.in"
Note: See TracBrowser for help on using the repository browser.