|
diff --git a/config.in b/config.in index 372ecfb..8cffa38 100644 --- a/ config.in+++ b/ config.in |
|
@@ -1,276 +1,274 @@ |
1 | mainmenu "Opie Configuration" |
1 | mainmenu "Opie Configuration" |
2 | |
2 | |
3 | menu "Build Parameters" |
3 | menu "Build Parameters" |
4 | |
4 | |
5 | choice |
5 | choice |
6 | prompt "Target Machine" |
6 | prompt "Target Machine" |
7 | default TARGET_X86 |
7 | default TARGET_X86 |
8 | help |
8 | help |
9 | Please select the architecture of the machine you will be |
9 | Please select the architecture of the machine you will be |
10 | building the OpenZaurus buildroot for. |
10 | building the OpenZaurus buildroot for. |
11 | |
11 | |
12 | config TARGET_X86 |
12 | config TARGET_X86 |
13 | boolean "Intel X86" |
13 | boolean "Intel X86" |
14 | |
14 | |
15 | config TARGET_MACOSX |
15 | config TARGET_MACOSX |
16 | boolean "Mac OS X (DARWIN)" |
16 | boolean "Mac OS X (DARWIN)" |
17 | |
17 | |
18 | config TARGET_SHARP |
18 | config TARGET_SHARP |
19 | boolean "Sharp Zaurus w/ SA1100 (5000 and 5500)" |
19 | boolean "Sharp Zaurus w/ SA1100 (5000 and 5500)" |
20 | |
20 | |
21 | config TARGET_C700 |
21 | config TARGET_C700 |
22 | boolean "Sharp Zaurus w/ PXA25x (5600, C7x0, C8x0)" |
22 | boolean "Sharp Zaurus w/ PXA25x (5600, C7x0, C8x0)" |
23 | |
23 | |
24 | config TARGET_OE |
24 | config TARGET_OE |
25 | boolean "OpenEmbedded w/ OE build dir set below" |
25 | boolean "OpenEmbedded w/ OE build dir set below" |
26 | |
26 | |
27 | config TARGET_IPAQ |
27 | config TARGET_IPAQ |
28 | boolean "iPAQ" |
28 | boolean "iPAQ" |
29 | |
29 | |
30 | config TARGET_RAMSES |
30 | config TARGET_RAMSES |
31 | boolean "Ramses" |
31 | boolean "Ramses" |
32 | |
32 | |
33 | config TARGET_SIMPAD |
33 | config TARGET_SIMPAD |
34 | boolean "SIMpad" |
34 | boolean "SIMpad" |
35 | |
35 | |
36 | config TARGET_YOPY |
36 | config TARGET_YOPY |
37 | boolean "Yopy 3500/3700" |
37 | boolean "Yopy 3500/3700" |
38 | endchoice |
38 | endchoice |
39 | |
39 | |
40 | config OE_BUILD_DIR |
40 | config OE_BUILD_DIR |
41 | depends TARGET_OE |
41 | depends TARGET_OE |
42 | string "OE build directory" |
42 | string "OE build directory" |
43 | default ">>>set OpenEmbedded build directory here<<<" |
43 | default ">>>set OpenEmbedded build directory here<<<" |
44 | |
44 | |
45 | config OPTIMIZE |
45 | config OPTIMIZE |
46 | boolean "Use optimizations" |
46 | boolean "Use optimizations" |
47 | default "y" if ! TARGET_X86 |
47 | default "y" if ! TARGET_X86 |
48 | |
48 | |
49 | config THREADED |
49 | config THREADED |
50 | boolean "Enable threaded build" |
50 | boolean "Enable threaded build" |
51 | default "n" |
51 | default "n" |
52 | |
52 | |
53 | config STATIC |
53 | config STATIC |
54 | boolean "Build static libraries" |
54 | boolean "Build static libraries" |
55 | default "n" |
55 | default "n" |
56 | |
56 | |
57 | config DEBUG |
57 | config DEBUG |
58 | boolean "Enable debug builds" |
58 | boolean "Enable debug builds" |
59 | default n |
59 | default n |
60 | |
60 | |
61 | config RELEASE |
61 | config RELEASE |
62 | bool |
62 | bool |
63 | default y |
63 | default y |
64 | depends !DEBUG |
64 | depends !DEBUG |
65 | |
65 | |
66 | config QUICK_LAUNCH |
66 | config QUICK_LAUNCH |
67 | boolean "Enable Quick Launch" |
67 | boolean "Enable Quick Launch" |
68 | default n if TARGET_X86 |
68 | default n if TARGET_X86 |
69 | default y if ! TARGET_X86 |
69 | default y if ! TARGET_X86 |
70 | |
70 | |
71 | config QUICKLAUNCH_PATH |
71 | config QUICKLAUNCH_PATH |
72 | string "Path to quicklauncher" |
72 | string "Path to quicklauncher" |
73 | default "./quicklauncher" if TARGET_X86 |
73 | default "./quicklauncher" if TARGET_X86 |
74 | default "/opt/QtPalmtop/bin/quicklauncher" if ! TARGET_X86 |
74 | default "/opt/QtPalmtop/bin/quicklauncher" if ! TARGET_X86 |
75 | |
75 | |
76 | config SPECFILE |
76 | config SPECFILE |
77 | string |
77 | string |
78 | default "qws/linux-generic-g++" if TARGET_X86 && (! X11) |
78 | default "qws/linux-generic-g++" if TARGET_X86 && (! X11) |
79 | default "linux-g++" if TARGET_X86 && X11 |
79 | default "linux-g++" if TARGET_X86 && X11 |
80 | default "qws/linux-sharp-g++" if TARGET_SHARP && (! X11) |
80 | default "qws/linux-sharp-g++" if TARGET_SHARP && (! X11) |
81 | default "linux-g++" if TARGET_SHARP && X11 |
81 | default "linux-g++" if TARGET_SHARP && X11 |
82 | default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11) |
82 | default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11) |
83 | default "linux-g++" if TARGET_IPAQ && X11 |
83 | default "linux-g++" if TARGET_IPAQ && X11 |
84 | default "qws/linux-ramses-g++" if TARGET_RAMSES && (! X11) |
84 | default "qws/linux-ramses-g++" if TARGET_RAMSES && (! X11) |
85 | default "linux-g++" if TARGET_RAMSES && X11 |
85 | default "linux-g++" if TARGET_RAMSES && X11 |
86 | default "qws/linux-simpad-g++" if TARGET_SIMPAD && (! X11) |
86 | default "qws/linux-simpad-g++" if TARGET_SIMPAD && (! X11) |
87 | default "linux-g++" if TARGET_SIMPAD && X11 |
87 | default "linux-g++" if TARGET_SIMPAD && X11 |
88 | default "qws/linux-yopy-g++" if TARGET_YOPY && (! X11) |
88 | default "qws/linux-yopy-g++" if TARGET_YOPY && (! X11) |
89 | default "qws/macx-generic-g++" if TARGET_MACOSX && (! X11) |
89 | default "qws/macx-generic-g++" if TARGET_MACOSX && (! X11) |
90 | default "qws/linux-oe-g++" if TARGET_OE && (!X11) |
90 | default "qws/linux-oe-g++" if TARGET_OE && (!X11) |
91 | |
91 | |
92 | config CUSTOMFILE |
92 | config CUSTOMFILE |
93 | string |
93 | string |
94 | default "custom-ipaq.h" if TARGET_IPAQ |
94 | default "custom-ipaq.h" if TARGET_IPAQ |
95 | default "custom-sharp.h" if TARGET_SHARP |
95 | default "custom-sharp.h" if TARGET_SHARP |
96 | default "custom-ramses.h" if TARGET_RAMSES |
96 | default "custom-ramses.h" if TARGET_RAMSES |
97 | default "custom-ipaq.h" if TARGET_SIMPAD |
97 | default "custom-ipaq.h" if TARGET_SIMPAD |
98 | default "custom-yopy.h" if TARGET_YOPY |
98 | default "custom-yopy.h" if TARGET_YOPY |
99 | |
99 | |
100 | config OPTIMIZATIONS |
100 | config OPTIMIZATIONS |
101 | string "Optimization flags" |
101 | string "Optimization flags" |
102 | depends OPTIMIZE |
102 | depends OPTIMIZE |
103 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_IPAQ |
103 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_IPAQ |
104 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_YOPY |
104 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_YOPY |
105 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SHARP |
105 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SHARP |
106 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_RAMSES |
106 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_RAMSES |
107 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SIMPAD |
107 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SIMPAD |
108 | default "-march=armv5te -mtune=xscale -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_C700 |
108 | default "-march=armv5te -mtune=xscale -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_C700 |
109 | |
109 | |
110 | config EXPERIMENTAL |
110 | config EXPERIMENTAL |
111 | bool "Prompt for development and/or incomplete items" |
111 | bool "Prompt for development and/or incomplete items" |
112 | default y |
112 | default y |
113 | |
113 | |
114 | endmenu |
114 | endmenu |
115 | |
115 | |
116 | menu "Configuration" |
116 | menu "Configuration" |
117 | config OPIE_NO_OVERRIDE_QT |
117 | config OPIE_NO_OVERRIDE_QT |
118 | boolean "Build Opie against an unpatched version of Qt" |
118 | boolean "Build Opie against an unpatched version of Qt" |
119 | default n |
119 | default n |
120 | |
120 | |
121 | config OPIE_NO_ERASERECT_FIX |
121 | config OPIE_NO_ERASERECT_FIX |
122 | boolean "Disable Fixup eraseRect for HancomMobileWord,neocal.. to make libopiecore work on Sharps libqpe" |
122 | boolean "Disable Fixup eraseRect for HancomMobileWord,neocal.. to make libopiecore work on Sharps libqpe" |
123 | default n |
123 | default n |
124 | |
124 | |
125 | config OPIE_NO_BUILTIN_SHUTDOWN |
125 | config OPIE_NO_BUILTIN_SHUTDOWN |
126 | boolean "Disable the built in shutdown application" |
126 | boolean "Disable the built in shutdown application" |
127 | default y |
127 | default y |
128 | |
128 | |
129 | config OPIE_NO_BUILTIN_CALIBRATE |
129 | config OPIE_NO_BUILTIN_CALIBRATE |
130 | boolean "Disable the built in calibrate application" |
130 | boolean "Disable the built in calibrate application" |
131 | default y if TARGET_YOPY |
131 | default y if TARGET_YOPY |
132 | default n if ! TARGET_YOPY |
132 | default n if ! TARGET_YOPY |
133 | |
133 | |
134 | config OPIE_SOUND_FRAGMENT_SHIFT |
134 | config OPIE_SOUND_FRAGMENT_SHIFT |
135 | string "The sound fragment used in Opie Player I" |
135 | string "The sound fragment used in Opie Player I" |
136 | default "14" if TARGET_IPAQ |
136 | default "14" if TARGET_IPAQ |
137 | default "16" if ! TARGET_IPAQ |
137 | default "16" if ! TARGET_IPAQ |
138 | |
138 | |
139 | config USE_REALTIME_AUDIO_THREAD |
139 | config USE_REALTIME_AUDIO_THREAD |
140 | boolean "Use a realtime thread in Opie Player I" |
140 | boolean "Use a realtime thread in Opie Player I" |
141 | default y if TARGET_IPAQ || TARGET_SIMPAD || TARGET_RAMSES || TARGET_SHARP |
141 | default y if TARGET_IPAQ || TARGET_SIMPAD || TARGET_RAMSES || TARGET_SHARP |
142 | default n if ! (TARGET_IPAQ || TARGET_SIMPAD || TARGET_RAMSES || TARGET_SHARP) |
142 | default n if ! (TARGET_IPAQ || TARGET_SIMPAD || TARGET_RAMSES || TARGET_SHARP) |
143 | |
143 | |
144 | config QT_QWS_ALLOW_OVERCLOCK |
144 | config QT_QWS_ALLOW_OVERCLOCK |
145 | boolean "Allow the user to overclock the device" |
145 | boolean "Allow the user to overclock the device" |
146 | depends TARGET_RAMSES |
146 | depends TARGET_RAMSES |
147 | default n |
147 | default n |
148 | |
148 | |
149 | config USE_FILE_NOTIFICATION |
149 | config USE_FILE_NOTIFICATION |
150 | boolean "Substitute (some) polling interfaces with OFileNotifier" |
150 | boolean "Substitute (some) polling interfaces with OFileNotifier" |
151 | default y |
151 | default y |
152 | |
152 | |
153 | config OPIE_NEW_ALLOC |
153 | config OPIE_NEW_ALLOC |
154 | boolean "Use malloc and free for the implementation" |
154 | boolean "Use malloc and free for the implementation" |
155 | default y if TARGET_RAMSES || TARGET_IPAQ || TARGET_SIMPAD || TARGET_SHARP |
155 | default y if TARGET_RAMSES || TARGET_IPAQ || TARGET_SIMPAD || TARGET_SHARP |
156 | default n if ! (TARGET_IPAQ || TARGET_SIMPAD || TARGET_RAMSES || TARGET_SHARP) |
156 | default n if ! (TARGET_IPAQ || TARGET_SIMPAD || TARGET_RAMSES || TARGET_SHARP) |
157 | |
157 | |
158 | config OPIE_TASKBAR_LOCK_KEY_STATE |
158 | config OPIE_TASKBAR_LOCK_KEY_STATE |
159 | boolean "Have a KeyLock state indicator on the taskbar" |
159 | boolean "Have a KeyLock state indicator on the taskbar" |
160 | default y if TARGET_SHARP |
160 | default y if TARGET_SHARP |
161 | default n if !TARGET_SHARP |
161 | default n if !TARGET_SHARP |
162 | |
162 | |
163 | config LIBQPE_WITHROHFEEDBACK |
163 | config LIBQPE_WITHROHFEEDBACK |
164 | boolean "Build libqpe with Right-On-Hold feedback" |
164 | boolean "Build libqpe with Right-On-Hold feedback" |
165 | default y |
165 | default y |
166 | |
166 | |
167 | config OPIE_NO_SOUND_PCM_READ_BITS |
167 | config OPIE_NO_SOUND_PCM_READ_BITS |
168 | boolean "There is not a pcm_read_bits io control" |
168 | boolean "There is not a pcm_read_bits io control" |
169 | default y if TARGET_SHARP |
169 | default y if TARGET_SHARP |
170 | default n if ! TARGET_SHARP |
170 | default n if ! TARGET_SHARP |
171 | endmenu |
171 | endmenu |
172 | |
172 | |
173 | menu "Dependencies" |
173 | menu "Dependencies" |
174 | source dependencies.in |
174 | source dependencies.in |
175 | endmenu |
175 | endmenu |
176 | |
176 | |
177 | menu "Base" |
177 | menu "Base" |
178 | choice |
178 | choice |
179 | prompt "Qpe Library Selection" |
179 | prompt "Qpe Library Selection" |
180 | default LIBQPE |
180 | default LIBQPE |
181 | source library/config.in |
181 | source library/config.in |
182 | source x11/config.in |
182 | source x11/config.in |
183 | endchoice |
183 | endchoice |
184 | source libopie/config.in |
| |
185 | |
| |
186 | source libopie2/config.in |
184 | source libopie2/config.in |
187 | source libqtaux/config.in |
185 | source libqtaux/config.in |
188 | source rsync/config.in |
186 | source rsync/config.in |
189 | source core/opie-login/config.in |
187 | source core/opie-login/config.in |
190 | source core/opiealarm/config.in |
188 | source core/opiealarm/config.in |
191 | source core/tools/quicklauncher/config.in |
189 | source core/tools/quicklauncher/config.in |
192 | source core/launcher/config.in |
190 | source core/launcher/config.in |
193 | source core/symlinker/config.in |
191 | source core/symlinker/config.in |
194 | endmenu |
192 | endmenu |
195 | |
193 | |
196 | comment "" |
194 | comment "" |
197 | |
195 | |
198 | menu "Applets" |
196 | menu "Applets" |
199 | source core/applets/config.in |
197 | source core/applets/config.in |
200 | source noncore/applets/config.in |
198 | source noncore/applets/config.in |
201 | endmenu |
199 | endmenu |
202 | |
200 | |
203 | menu "Apps" |
201 | menu "Apps" |
204 | source core/apps/config.in |
202 | source core/apps/config.in |
205 | source noncore/apps/config.in |
203 | source noncore/apps/config.in |
206 | endmenu |
204 | endmenu |
207 | |
205 | |
208 | menu "Communications and Networking" |
206 | menu "Communications and Networking" |
209 | source noncore/comm/config.in |
207 | source noncore/comm/config.in |
210 | source noncore/net/config.in |
208 | source noncore/net/config.in |
211 | endmenu |
209 | endmenu |
212 | |
210 | |
213 | menu "Games" |
211 | menu "Games" |
214 | source noncore/games/config.in |
212 | source noncore/games/config.in |
215 | endmenu |
213 | endmenu |
216 | |
214 | |
217 | menu "Graphics and Multimedia" |
215 | menu "Graphics and Multimedia" |
218 | source freetype/config.in |
216 | source freetype/config.in |
219 | source noncore/graphics/config.in |
217 | source noncore/graphics/config.in |
220 | source core/multimedia/config.in |
218 | source core/multimedia/config.in |
221 | source noncore/multimedia/config.in |
219 | source noncore/multimedia/config.in |
222 | endmenu |
220 | endmenu |
223 | |
221 | |
224 | menu "Input methods" |
222 | menu "Input methods" |
225 | source inputmethods/config.in |
223 | source inputmethods/config.in |
226 | endmenu |
224 | endmenu |
227 | |
225 | |
228 | menu "Pim" |
226 | menu "Pim" |
229 | source core/obex/config.in |
227 | source core/obex/config.in |
230 | source core/pim/config.in |
228 | source core/pim/config.in |
231 | comment "Today Plugins ---" |
229 | comment "Today Plugins ---" |
232 | source noncore/todayplugins/config.in |
230 | source noncore/todayplugins/config.in |
233 | source core/pim/today/plugins/config.in |
231 | source core/pim/today/plugins/config.in |
234 | endmenu |
232 | endmenu |
235 | |
233 | |
236 | menu "Settings" |
234 | menu "Settings" |
237 | source core/settings/config.in |
235 | source core/settings/config.in |
238 | source noncore/settings/config.in |
236 | source noncore/settings/config.in |
239 | source noncore/securityplugins/config.in |
237 | source noncore/securityplugins/config.in |
240 | endmenu |
238 | endmenu |
241 | |
239 | |
242 | menu "Theming" |
240 | menu "Theming" |
243 | comment "Decorations ---" |
241 | comment "Decorations ---" |
244 | source noncore/decorations/config.in |
242 | source noncore/decorations/config.in |
245 | comment "Styles ---" |
243 | comment "Styles ---" |
246 | source noncore/styles/config.in |
244 | source noncore/styles/config.in |
247 | endmenu |
245 | endmenu |
248 | |
246 | |
249 | menu "Tools" |
247 | menu "Tools" |
250 | source noncore/tools/config.in |
248 | source noncore/tools/config.in |
251 | endmenu |
249 | endmenu |
252 | |
250 | |
253 | menu "Development" |
251 | menu "Development" |
254 | source development/keyview/config.in |
252 | source development/keyview/config.in |
255 | #source development/debugviewer/config.in |
253 | #source development/debugviewer/config.in |
256 | endmenu |
254 | endmenu |
257 | |
255 | |
258 | menu "Examples" |
256 | menu "Examples" |
259 | config EXAMPLES |
257 | config EXAMPLES |
260 | boolean "Compile Example Application" |
258 | boolean "Compile Example Application" |
261 | source examples/config.in |
259 | source examples/config.in |
262 | endmenu |
260 | endmenu |
263 | |
261 | |
264 | comment "" |
262 | comment "" |
265 | |
263 | |
266 | menu "Unsupported / Unmaintained" |
264 | menu "Unsupported / Unmaintained" |
267 | source noncore/unsupported/config.in |
265 | source noncore/unsupported/config.in |
268 | endmenu |
266 | endmenu |
269 | |
267 | |
270 | comment "" |
268 | comment "" |
271 | depends on EXPERIMENTAL |
269 | depends on EXPERIMENTAL |
272 | menu "Experimental" |
270 | menu "Experimental" |
273 | depends on EXPERIMENTAL |
271 | depends on EXPERIMENTAL |
274 | source libslcompat/config.in |
272 | source libslcompat/config.in |
275 | source core/qws/config.in |
273 | source core/qws/config.in |
276 | endmenu |
274 | endmenu |
|