root/tags/freewrt_1_0_1/Config.in

Revision 945, 1.4 kB (checked in by wbx, 2 years ago)

sync dependency cleanup with trunk

Line 
1 mainmenu "FreeWRT Configuration"
2
3 config MODULES
4         bool
5         default y
6
7 config FWRT_HAVE_DOT_CONFIG
8         bool
9         default y
10
11 config FWRT_BIG_ENDIAN
12         tristate
13
14 # Supported architectures
15
16 config FWRT_i386
17         tristate
18        
19 config FWRT_mips
20         tristate
21         select FWRT_BIG_ENDIAN
22
23 config FWRT_mipsel
24         tristate
25
26 config FWRT_armeb
27         tristate
28         select FWRT_BIG_ENDIAN
29
30 config FWRT_mips64
31         tristate
32         select FWRT_BIG_ENDIAN
33
34 config FWRT_arm
35         tristate
36
37 config FWRT_cris
38         tristate
39
40 config FWRT_m68k
41         tristate
42         select FWRT_BIG_ENDIAN
43
44 config FWRT_powerpc
45         tristate
46         select FWRT_BIG_ENDIAN
47
48 config FWRT_sh3
49         tristate
50
51 config FWRT_sh3eb
52         tristate
53         select FWRT_BIG_ENDIAN
54
55 config FWRT_sh4
56         tristate
57
58 config FWRT_sh4eb
59         tristate
60         select FWRT_BIG_ENDIAN
61
62 config FWRT_sparc
63         tristate
64         select FWRT_BIG_ENDIAN
65
66 config 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
84 config FWRT_WGET
85         string
86         default "wget --passive-ftp -nd"
87
88 config FWRT_JLEVEL
89         int
90         default "1"
91
92 config FWRT_LINUX_2_4_BRCM
93         bool
94
95 source "target/Config.in"
96 source "target/linux/Config.in"
97 source "package/Config.in"
Note: See TracBrowser for help on using the browser.