source: freewrt/Config.in.devel@ 14ccb40

freewrt_1_0 freewrt_2_0
Last change on this file since 14ccb40 was 855544c, checked in by Waldemar Brodkorb <wbx@…>, 20 years ago

disable toolchain options, dangerous settings, some OpenWrt -> FreeWRT conversion, remove some error messages about .defconfig

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

  • Property mode set to 100644
File size: 1.5 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"
83
84menu "Build options"
85
86config BR2_WGET
87 string
88 prompt "Wget command"
89 default "wget --passive-ftp -nd"
90
91config BR2_TAR_VERBOSITY
92 bool
93 prompt "Tar verbose"
94 default n
95
96config BR2_JLEVEL
97 int
98 prompt "Number of jobs to run simultaneously"
99 default "1"
100 help
101 Number of jobs to run simultanesouly
102
103endmenu
104
105source "target/linux/Config.in"
106source "package/Config.in"
107source "toolchain/Config.in"
Note: See TracBrowser for help on using the repository browser.