author | kergoth <kergoth> | 2003-05-08 16:50:40 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2003-05-08 16:50:40 (UTC) |
commit | 8ee7334780202ed777895a56c7516a11d37ec6a4 (patch) (unidiff) | |
tree | 0af42f6147860cd09d46040baabdb75b0e780c7d /config.in | |
parent | 7d24cfad2a564436950b5f42e74c0bd51481f5a9 (diff) | |
download | opie-8ee7334780202ed777895a56c7516a11d37ec6a4.zip opie-8ee7334780202ed777895a56c7516a11d37ec6a4.tar.gz opie-8ee7334780202ed777895a56c7516a11d37ec6a4.tar.bz2 |
Buildsystem glue and config item for minimal qws server
-rw-r--r-- | config.in | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -1,155 +1,161 @@ | |||
1 | mainmenu "Opie Configuration" | 1 | mainmenu "Opie Configuration" |
2 | menu "Build Parameters" | 2 | menu "Build Parameters" |
3 | 3 | ||
4 | #choice | 4 | #choice |
5 | # prompt "Build Processor family" | 5 | # prompt "Build Processor family" |
6 | # default BUILD_X86 | 6 | # default BUILD_X86 |
7 | # help | 7 | # help |
8 | # Please select the architecture of the machine you will be | 8 | # Please select the architecture of the machine you will be |
9 | # building the OpenZaurus buildroot on. | 9 | # building the OpenZaurus buildroot on. |
10 | # | 10 | # |
11 | # config BUILD_X86 | 11 | # config BUILD_X86 |
12 | # boolean "X86 Architecture" | 12 | # boolean "X86 Architecture" |
13 | # | 13 | # |
14 | #endchoice | 14 | #endchoice |
15 | 15 | ||
16 | choice | 16 | choice |
17 | prompt "Target Machine" | 17 | prompt "Target Machine" |
18 | default TARGET_X86 | 18 | default TARGET_X86 |
19 | help | 19 | help |
20 | Please select the architecture of the machine you will be | 20 | Please select the architecture of the machine you will be |
21 | building the OpenZaurus buildroot for. | 21 | building the OpenZaurus buildroot for. |
22 | 22 | ||
23 | config TARGET_X86 | 23 | config TARGET_X86 |
24 | boolean "Intel X86" | 24 | boolean "Intel X86" |
25 | 25 | ||
26 | config TARGET_SHARP | 26 | config TARGET_SHARP |
27 | boolean "Sharp Zaurus SL-5x00 - stock" | 27 | boolean "Sharp Zaurus SL-5x00 - stock" |
28 | 28 | ||
29 | # config TARGET_OZ | 29 | # config TARGET_OZ |
30 | # boolean "Sharp Zaurus SL-5x00 - OpenZaurus" | 30 | # boolean "Sharp Zaurus SL-5x00 - OpenZaurus" |
31 | 31 | ||
32 | config TARGET_IPAQ | 32 | config TARGET_IPAQ |
33 | boolean "Ipaq" | 33 | boolean "Ipaq" |
34 | 34 | ||
35 | endchoice | 35 | endchoice |
36 | 36 | ||
37 | config OPTIMIZE | 37 | config OPTIMIZE |
38 | boolean "Use optimizations" | 38 | boolean "Use optimizations" |
39 | default "y" if ! TARGET_X86 | 39 | default "y" if ! TARGET_X86 |
40 | 40 | ||
41 | config DEBUG | 41 | config DEBUG |
42 | boolean "Enable debug builds" | 42 | boolean "Enable debug builds" |
43 | default "n" | 43 | default n |
44 | |||
45 | config RELEASE | ||
46 | bool | ||
47 | default y | ||
48 | depends ! DEBUG | ||
44 | 49 | ||
45 | config SPECFILE | 50 | config SPECFILE |
46 | string | 51 | string |
47 | default "qws/linux-generic-g++" if TARGET_X86 && (! X11) | 52 | default "qws/linux-generic-g++" if TARGET_X86 && (! X11) |
48 | default "linux-g++" if TARGET_X86 && X11 | 53 | default "linux-g++" if TARGET_X86 && X11 |
49 | default "qws/linux-sharp-g++" if TARGET_SHARP && (! X11) | 54 | default "qws/linux-sharp-g++" if TARGET_SHARP && (! X11) |
50 | default "linux-g++" if TARGET_SHARP && X11 | 55 | default "linux-g++" if TARGET_SHARP && X11 |
51 | # default "linux-oz-g++" if TARGET_OZ | 56 | # default "linux-oz-g++" if TARGET_OZ |
52 | default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11) | 57 | default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11) |
53 | default "linux-g++" if TARGET_IPAQ && X11 | 58 | default "linux-g++" if TARGET_IPAQ && X11 |
54 | 59 | ||
55 | config CUSTOMFILE | 60 | config CUSTOMFILE |
56 | string | 61 | string |
57 | default "custom-ipaq.h" if TARGET_IPAQ | 62 | default "custom-ipaq.h" if TARGET_IPAQ |
58 | default "custom-sharp.h" if TARGET_SHARP | 63 | default "custom-sharp.h" if TARGET_SHARP |
59 | 64 | ||
60 | 65 | ||
61 | config OPTIMIZATIONS | 66 | config OPTIMIZATIONS |
62 | string "Optimization flags" | 67 | string "Optimization flags" |
63 | depends OPTIMIZE | 68 | depends OPTIMIZE |
64 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_IPAQ | 69 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_IPAQ |
65 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SHARP | 70 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SHARP |
66 | 71 | ||
67 | #config CROSS | 72 | #config CROSS |
68 | # string "Crosscompilation prefix" | 73 | # string "Crosscompilation prefix" |
69 | # default "arm-linux-" | 74 | # default "arm-linux-" |
70 | # help | 75 | # help |
71 | # Crosscompilation prefix is the prefix which will be prepended | 76 | # Crosscompilation prefix is the prefix which will be prepended |
72 | # to all compilation commands. For example, a crosscompilation prefix | 77 | # to all compilation commands. For example, a crosscompilation prefix |
73 | # of arm-linux-, results in the build calling arm-linux-gcc as its CC. | 78 | # of arm-linux-, results in the build calling arm-linux-gcc as its CC. |
74 | 79 | ||
75 | endmenu | 80 | endmenu |
76 | 81 | ||
77 | menu "Base" | 82 | menu "Base" |
78 | choice | 83 | choice |
79 | prompt "Qpe Library Selection" | 84 | prompt "Qpe Library Selection" |
80 | default LIBQPE | 85 | default LIBQPE |
81 | 86 | ||
82 | source library/config.in | 87 | source library/config.in |
83 | source x11/config.in | 88 | source x11/config.in |
84 | endchoice | 89 | endchoice |
85 | source libopie/config.in | 90 | source libopie/config.in |
86 | source core/opie-login/config.in | 91 | source core/opie-login/config.in |
87 | source core/opiealarm/config.in | 92 | source core/opiealarm/config.in |
88 | source core/launcher/config.in | 93 | source core/launcher/config.in |
94 | source core/qws/config.in | ||
89 | endmenu | 95 | endmenu |
90 | 96 | ||
91 | comment "" | 97 | comment "" |
92 | 98 | ||
93 | #config APPLETS | 99 | #config APPLETS |
94 | # bool "Applets" | 100 | # bool "Applets" |
95 | # default "y" | 101 | # default "y" |
96 | 102 | ||
97 | menu "Applets" | 103 | menu "Applets" |
98 | # depends APPLETS | 104 | # depends APPLETS |
99 | 105 | ||
100 | source core/applets/config.in | 106 | source core/applets/config.in |
101 | source noncore/applets/config.in | 107 | source noncore/applets/config.in |
102 | endmenu | 108 | endmenu |
103 | 109 | ||
104 | #config APPS | 110 | #config APPS |
105 | # bool "Apps" | 111 | # bool "Apps" |
106 | # default "y" | 112 | # default "y" |
107 | 113 | ||
108 | menu "Apps" | 114 | menu "Apps" |
109 | # depends APPS | 115 | # depends APPS |
110 | 116 | ||
111 | source core/apps/config.in | 117 | source core/apps/config.in |
112 | source noncore/apps/config.in | 118 | source noncore/apps/config.in |
113 | endmenu | 119 | endmenu |
114 | 120 | ||
115 | menu "Communications and Networking" | 121 | menu "Communications and Networking" |
116 | source noncore/comm/config.in | 122 | source noncore/comm/config.in |
117 | source noncore/mail/config.in | 123 | source noncore/mail/config.in |
118 | source noncore/net/config.in | 124 | source noncore/net/config.in |
119 | endmenu | 125 | endmenu |
120 | menu "Games" | 126 | menu "Games" |
121 | source noncore/games/config.in | 127 | source noncore/games/config.in |
122 | endmenu | 128 | endmenu |
123 | menu "Graphics and Multimedia" | 129 | menu "Graphics and Multimedia" |
124 | source freetype/config.in | 130 | source freetype/config.in |
125 | source noncore/graphics/config.in | 131 | source noncore/graphics/config.in |
126 | source core/multimedia/config.in | 132 | source core/multimedia/config.in |
127 | source noncore/multimedia/config.in | 133 | source noncore/multimedia/config.in |
128 | endmenu | 134 | endmenu |
129 | menu "Input methods" | 135 | menu "Input methods" |
130 | source inputmethods/config.in | 136 | source inputmethods/config.in |
131 | endmenu | 137 | endmenu |
132 | menu "Pim" | 138 | menu "Pim" |
133 | source core/pim/config.in | 139 | source core/pim/config.in |
134 | menu "Today Plugins" | 140 | menu "Today Plugins" |
135 | source noncore/todayplugins/config.in | 141 | source noncore/todayplugins/config.in |
136 | source core/pim/today/plugins/config.in | 142 | source core/pim/today/plugins/config.in |
137 | endmenu | 143 | endmenu |
138 | endmenu | 144 | endmenu |
139 | menu "Settings" | 145 | menu "Settings" |
140 | source core/settings/config.in | 146 | source core/settings/config.in |
141 | source noncore/settings/config.in | 147 | source noncore/settings/config.in |
142 | endmenu | 148 | endmenu |
143 | menu "Theming" | 149 | menu "Theming" |
144 | source noncore/decorations/config.in | 150 | source noncore/decorations/config.in |
145 | source noncore/styles/config.in | 151 | source noncore/styles/config.in |
146 | endmenu | 152 | endmenu |
147 | menu "Tools" | 153 | menu "Tools" |
148 | source noncore/tools/config.in | 154 | source noncore/tools/config.in |
149 | source development/config.in | 155 | source development/config.in |
150 | endmenu | 156 | endmenu |
151 | comment "" | 157 | comment "" |
152 | menu "Experimental" | 158 | menu "Experimental" |
153 | source libopie2/config.in | 159 | source libopie2/config.in |
154 | endmenu | 160 | endmenu |
155 | 161 | ||