summaryrefslogtreecommitdiff
path: root/config.in
Unidiff
Diffstat (limited to 'config.in') (more/less context) (show whitespace changes)
-rw-r--r--config.in12
1 files changed, 8 insertions, 4 deletions
diff --git a/config.in b/config.in
index 1ac9a66..96cd28f 100644
--- a/config.in
+++ b/config.in
@@ -1,234 +1,238 @@
1mainmenu "Opie Configuration" 1mainmenu "Opie Configuration"
2 2
3menu "Build Parameters" 3menu "Build Parameters"
4 4
5choice 5choice
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" 19 boolean "Sharp Zaurus"
20 20
21 config TARGET_IPAQ 21 config TARGET_IPAQ
22 boolean "iPAQ" 22 boolean "iPAQ"
23 23
24 config TARGET_RAMSES 24 config TARGET_RAMSES
25 boolean "Ramses" 25 boolean "Ramses"
26 26
27 config TARGET_SIMPAD 27 config TARGET_SIMPAD
28 boolean "SIMpad" 28 boolean "SIMpad"
29 29
30 config TARGET_YOPY 30 config TARGET_YOPY
31 boolean "Yopy 3500/3700" 31 boolean "Yopy 3500/3700"
32 32
33endchoice 33endchoice
34 34
35config OPTIMIZE 35config OPTIMIZE
36 boolean "Use optimizations" 36 boolean "Use optimizations"
37 default "y" if ! TARGET_X86 37 default "y" if ! TARGET_X86
38 38
39config DEBUG 39config DEBUG
40 boolean "Enable debug builds" 40 boolean "Enable debug builds"
41 default n 41 default n
42config RELEASE 42config RELEASE
43 bool 43 bool
44 default y 44 default y
45 depends !DEBUG 45 depends !DEBUG
46 46
47config QUICK_LAUNCH 47config QUICK_LAUNCH
48 boolean "Enable Quick Launch" 48 boolean "Enable Quick Launch"
49 default n 49 default n
50 50
51config QUICKLAUNCH_PATH 51config QUICKLAUNCH_PATH
52 string "Path to quicklauncher" 52 string "Path to quicklauncher"
53 default "./quicklauncher" if TARGET_X86 53 default "./quicklauncher" if TARGET_X86
54 default "/opt/QtPalmtop/bin/quicklauncher" if ! TARGET_X86 54 default "/opt/QtPalmtop/bin/quicklauncher" if ! TARGET_X86
55 55
56config SPECFILE 56config SPECFILE
57 string 57 string
58 default "qws/linux-generic-g++" if TARGET_X86 && (! X11) 58 default "qws/linux-generic-g++" if TARGET_X86 && (! X11)
59 default "linux-g++" if TARGET_X86 && X11 59 default "linux-g++" if TARGET_X86 && X11
60 default "qws/linux-sharp-g++" if TARGET_SHARP && (! X11) 60 default "qws/linux-sharp-g++" if TARGET_SHARP && (! X11)
61 default "linux-g++" if TARGET_SHARP && X11 61 default "linux-g++" if TARGET_SHARP && X11
62 default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11) 62 default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11)
63 default "linux-g++" if TARGET_IPAQ && X11 63 default "linux-g++" if TARGET_IPAQ && X11
64 default "qws/linux-ramses-g++" if TARGET_RAMSES && (! X11) 64 default "qws/linux-ramses-g++" if TARGET_RAMSES && (! X11)
65 default "linux-g++" if TARGET_RAMSES && X11 65 default "linux-g++" if TARGET_RAMSES && X11
66 default "qws/linux-simpad-g++" if TARGET_SIMPAD && (! X11) 66 default "qws/linux-simpad-g++" if TARGET_SIMPAD && (! X11)
67 default "linux-g++" if TARGET_SIMPAD && X11 67 default "linux-g++" if TARGET_SIMPAD && X11
68 default "qws/linux-yopy-g++" if TARGET_YOPY && (! X11) 68 default "qws/linux-yopy-g++" if TARGET_YOPY && (! X11)
69 default "qws/macx-generic-g++" if TARGET_MACOSX && (! X11) 69 default "qws/macx-generic-g++" if TARGET_MACOSX && (! X11)
70 70
71config CUSTOMFILE 71config CUSTOMFILE
72 string 72 string
73 default "custom-ipaq.h" if TARGET_IPAQ 73 default "custom-ipaq.h" if TARGET_IPAQ
74 default "custom-sharp.h" if TARGET_SHARP 74 default "custom-sharp.h" if TARGET_SHARP
75 default "custom-ramses.h" if TARGET_RAMSES 75 default "custom-ramses.h" if TARGET_RAMSES
76 default "custom-ipaq.h" if TARGET_SIMPAD 76 default "custom-ipaq.h" if TARGET_SIMPAD
77 default "custom-yopy.h" if TARGET_YOPY 77 default "custom-yopy.h" if TARGET_YOPY
78 78
79config OPTIMIZATIONS 79config OPTIMIZATIONS
80 string "Optimization flags" 80 string "Optimization flags"
81 depends OPTIMIZE 81 depends OPTIMIZE
82 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_IPAQ 82 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_IPAQ
83 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_YOPY 83 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_YOPY
84 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SHARP 84 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SHARP
85 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_RAMSES 85 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_RAMSES
86 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SIMPAD 86 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SIMPAD
87 87
88config EXPERIMENTAL 88config EXPERIMENTAL
89 bool "Prompt for development and/or incomplete items" 89 bool "Prompt for development and/or incomplete items"
90 default y 90 default y
91 91
92endmenu 92endmenu
93 93
94menu "Opie Compile Configs" 94menu "Configuration"
95config OPIE_NO_OVERRIDE_QT 95config OPIE_NO_OVERRIDE_QT
96 boolean "Build Opie against an unpatched version of Qt" 96 boolean "Build Opie against an unpatched version of Qt"
97 default n 97 default n
98 98
99
100config OPIE_NO_BUILTIN_SHUTDOWN 99config OPIE_NO_BUILTIN_SHUTDOWN
101 boolean "Disable the built in shutdown application" 100 boolean "Disable the built in shutdown application"
102 default n 101 default n
103 102
104config OPIE_NO_BUILTIN_CALIBRATE 103config OPIE_NO_BUILTIN_CALIBRATE
105 boolean "Disable the built in calibrate application" 104 boolean "Disable the built in calibrate application"
106 default y if TARGET_YOPY 105 default y if TARGET_YOPY
107 default n 106 default n
108 107
109config OPIE_SOUND_FRAGMENT_SHIFT 108config OPIE_SOUND_FRAGMENT_SHIFT
110 string "The sound fragment used in Opie Player I" 109 string "The sound fragment used in Opie Player I"
111 default "14" if TARGET_IPAQ 110 default "14" if TARGET_IPAQ
112 default "16" if (!TARGET_IPAQ) 111 default "16" if (!TARGET_IPAQ)
113 112
114config USE_REALTIME_AUDIO_THREAD 113config USE_REALTIME_AUDIO_THREAD
115 boolean "Use a realtime thread in Opie Player I" 114 boolean "Use a realtime thread in Opie Player I"
116 default y if TARGET_IPAQ || TARGET_SIMPAD || TARGET_RAMSES || TARGET_SHARP 115 default y if TARGET_IPAQ || TARGET_SIMPAD || TARGET_RAMSES || TARGET_SHARP
117 default n 116 default n
118 117
119config QT_QWS_ALLOW_OVERCLOCK 118config QT_QWS_ALLOW_OVERCLOCK
120 boolean "Allow the user to overclock the device" 119 boolean "Allow the user to overclock the device"
121 depends TARGET_RAMSES 120 depends TARGET_RAMSES
122 default n 121 default n
123 122
124config OPIE_HIGH_RES_SMALL_PHY 123config OPIE_HIGH_RES_SMALL_PHY
125 boolean "Resolution is bigger than physical scrren" 124 boolean "Resolution is bigger than physical screen"
126 default y if TARGET_C700 125 default y if TARGET_C700
127 default n 126 default n
128 127
129config OPIE_NEW_ALLOC 128config OPIE_NEW_ALLOC
130 boolean "Use malloc and free for the implementation" 129 boolean "Use malloc and free for the implementation"
131 default y if TARGET_RAMSES || TARGET_IPAQ || TARGET_SIMPAD || TARGET_SHARP 130 default y if TARGET_RAMSES || TARGET_IPAQ || TARGET_SIMPAD || TARGET_SHARP
132 default n 131 default n
133 132
134config OPIE_NO_SOUND_PCM_READ_BITS 133config OPIE_NO_SOUND_PCM_READ_BITS
135 boolean "there is not a pcm_read_bits io control" 134 boolean "There is not a pcm_read_bits io control"
136 default y if TARGET_SHARP 135 default y if TARGET_SHARP
137 default n 136 default n
138 137
138config OPIE_WE_VERSION
139 string "The wireless extension (WE) version to build against"
140 default "15" if ! TARGET_X86
141 default "16" if TAGET_X86
142
139endmenu 143endmenu
140 144
141menu "Base" 145menu "Base"
142 choice 146 choice
143 prompt "Qpe Library Selection" 147 prompt "Qpe Library Selection"
144 default LIBQPE 148 default LIBQPE
145 source library/config.in 149 source library/config.in
146 source x11/config.in 150 source x11/config.in
147 endchoice 151 endchoice
148 source libopie/config.in 152 source libopie/config.in
149 source core/opie-login/config.in 153 source core/opie-login/config.in
150 source core/opiealarm/config.in 154 source core/opiealarm/config.in
151 source core/tools/quicklauncher/config.in 155 source core/tools/quicklauncher/config.in
152 source core/launcher/config.in 156 source core/launcher/config.in
153 source core/qws/config.in 157 source core/qws/config.in
154endmenu 158endmenu
155 159
156comment "" 160comment ""
157 161
158menu "Applets" 162menu "Applets"
159 source core/applets/config.in 163 source core/applets/config.in
160 source noncore/applets/config.in 164 source noncore/applets/config.in
161endmenu 165endmenu
162 166
163menu "Apps" 167menu "Apps"
164 source core/apps/config.in 168 source core/apps/config.in
165 source noncore/apps/config.in 169 source noncore/apps/config.in
166endmenu 170endmenu
167 171
168menu "Communications and Networking" 172menu "Communications and Networking"
169 source noncore/comm/config.in 173 source noncore/comm/config.in
170 source noncore/net/config.in 174 source noncore/net/config.in
171endmenu 175endmenu
172 176
173menu "Games" 177menu "Games"
174 source noncore/games/config.in 178 source noncore/games/config.in
175endmenu 179endmenu
176 180
177menu "Graphics and Multimedia" 181menu "Graphics and Multimedia"
178 source freetype/config.in 182 source freetype/config.in
179 source noncore/graphics/config.in 183 source noncore/graphics/config.in
180 source core/multimedia/config.in 184 source core/multimedia/config.in
181 source noncore/multimedia/config.in 185 source noncore/multimedia/config.in
182endmenu 186endmenu
183 187
184menu "Input methods" 188menu "Input methods"
185 source inputmethods/config.in 189 source inputmethods/config.in
186endmenu 190endmenu
187 191
188menu "Pim" 192menu "Pim"
189 source core/pim/config.in 193 source core/pim/config.in
190 menu "Today Plugins" 194 menu "Today Plugins"
191 source noncore/todayplugins/config.in 195 source noncore/todayplugins/config.in
192 source core/pim/today/plugins/config.in 196 source core/pim/today/plugins/config.in
193 endmenu 197 endmenu
194endmenu 198endmenu
195 199
196menu "Settings" 200menu "Settings"
197 source core/settings/config.in 201 source core/settings/config.in
198 source noncore/settings/config.in 202 source noncore/settings/config.in
199endmenu 203endmenu
200 204
201menu "Theming" 205menu "Theming"
202 source noncore/decorations/config.in 206 source noncore/decorations/config.in
203 source noncore/styles/config.in 207 source noncore/styles/config.in
204endmenu 208endmenu
205 209
206menu "Tools" 210menu "Tools"
207 source noncore/tools/config.in 211 source noncore/tools/config.in
208endmenu 212endmenu
209 213
210menu "Development" 214menu "Development"
211 source development/keyview/config.in 215 source development/keyview/config.in
212 #source development/debugviewer/config.in 216 #source development/debugviewer/config.in
213endmenu 217endmenu
214 218
215menu "Examples" 219menu "Examples"
216 config EXAMPLES 220 config EXAMPLES
217 boolean "Compile Example Application" 221 boolean "Compile Example Application"
218 source examples/config.in 222 source examples/config.in
219endmenu 223endmenu
220 224
221comment "" 225comment ""
222 226
223menu "Unsupported / Unmaintained" 227menu "Unsupported / Unmaintained"
224 source noncore/unsupported/config.in 228 source noncore/unsupported/config.in
225endmenu 229endmenu
226 230
227comment "" 231comment ""
228 depends on EXPERIMENTAL 232 depends on EXPERIMENTAL
229menu "Experimental" 233menu "Experimental"
230 depends on EXPERIMENTAL 234 depends on EXPERIMENTAL
231 source libopie2/config.in 235 source libopie2/config.in
232 source libqtaux/config.in 236 source libqtaux/config.in
233 237
234 config SQL_PIM_BACKEND 238 config SQL_PIM_BACKEND