source: freewrt/Config.in@ 97bbf15

Last change on this file since 97bbf15 was 03e4061, checked in by Waldemar Brodkorb <wbx@…>, 19 years ago

add some experimental stuff i would like to use for my linux laptop, not ready so far (initramfs with cryptotoken support, to encrypt a root partition with a usb cryptotoken..)

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

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