summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--config.in8
-rw-r--r--packages1
2 files changed, 8 insertions, 1 deletions
diff --git a/config.in b/config.in
index 7736ef2..d30f70b 100644
--- a/config.in
+++ b/config.in
@@ -1,136 +1,142 @@
1mainmenu "Opie Configuration" 1mainmenu "Opie Configuration"
2menu "Build Parameters" 2menu "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
16choice 16choice
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
35endchoice 35endchoice
36 36
37config OPTIMIZE 37config OPTIMIZE
38 boolean "Use optimizations" 38 boolean "Use optimizations"
39 default "y" if ! TARGET_X86 39 default "y" if ! TARGET_X86
40 40
41config DEBUG 41config 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
45config SPECFILE 50config 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
55config CUSTOMFILE 60config 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
61config OPTIMIZATIONS 66config 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
75endmenu 80endmenu
76 81
77menu "Base" 82menu "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
89endmenu 95endmenu
90 96
91comment "" 97comment ""
92 98
93#config APPLETS 99#config APPLETS
94# bool "Applets" 100# bool "Applets"
95# default "y" 101# default "y"
96 102
97menu "Applets" 103menu "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
102endmenu 108endmenu
103 109
104#config APPS 110#config APPS
105# bool "Apps" 111# bool "Apps"
106# default "y" 112# default "y"
107 113
108menu "Apps" 114menu "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
113endmenu 119endmenu
114 120
115menu "Communications and Networking" 121menu "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
119endmenu 125endmenu
120menu "Games" 126menu "Games"
121 source noncore/games/config.in 127 source noncore/games/config.in
122endmenu 128endmenu
123menu "Graphics and Multimedia" 129menu "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
128endmenu 134endmenu
129menu "Input methods" 135menu "Input methods"
130 source inputmethods/config.in 136 source inputmethods/config.in
131endmenu 137endmenu
132menu "Pim" 138menu "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
diff --git a/packages b/packages
index 0f7ab39..c1ac3f4 100644
--- a/packages
+++ b/packages
@@ -73,96 +73,97 @@ CONFIG_LIBOPIE2UI libopie2/opieui opieui.pro
73 CONFIG_LIBOPIETOOTH noncore/net/opietooth/liblib.pro 73 CONFIG_LIBOPIETOOTH noncore/net/opietooth/liblib.pro
74 CONFIG_LIBOPIE_PIM libopie/pimpim.pro 74 CONFIG_LIBOPIE_PIM libopie/pimpim.pro
75 CONFIG_LIBQPE librarylibrary.pro 75 CONFIG_LIBQPE librarylibrary.pro
76 CONFIG_LIBQPE-X11 x11/libqpe-x11libqpe-x11.pro 76 CONFIG_LIBQPE-X11 x11/libqpe-x11libqpe-x11.pro
77 CONFIG_LIBSQL libsqllibsql.pro 77 CONFIG_LIBSQL libsqllibsql.pro
78 CONFIG_LIGHT-AND-POWER core/settings/light-and-powerlight-and-power.pro 78 CONFIG_LIGHT-AND-POWER core/settings/light-and-powerlight-and-power.pro
79 CONFIG_LIQUID noncore/styles/liquidliquid.pro 79 CONFIG_LIQUID noncore/styles/liquidliquid.pro
80 CONFIG_LOGOUTAPPLET core/applets/logoutappletlogoutapplet.pro 80 CONFIG_LOGOUTAPPLET core/applets/logoutappletlogoutapplet.pro
81 CONFIG_MAILIT noncore/net/mailit mailit.pro 81 CONFIG_MAILIT noncore/net/mailit mailit.pro
82 CONFIG_MEDIUMMOUNT noncore/settings/mediummountmediummount.pro 82 CONFIG_MEDIUMMOUNT noncore/settings/mediummountmediummount.pro
83 CONFIG_METAL noncore/styles/metalmetal.pro 83 CONFIG_METAL noncore/styles/metalmetal.pro
84 CONFIG_MINDBREAKER noncore/games/mindbreakermindbreaker.pro 84 CONFIG_MINDBREAKER noncore/games/mindbreakermindbreaker.pro
85 CONFIG_MINESWEEP noncore/games/minesweepminesweep.pro 85 CONFIG_MINESWEEP noncore/games/minesweepminesweep.pro
86 CONFIG_MOBILEMSG noncore/comm/mobilemsgmobilemsg.pro 86 CONFIG_MOBILEMSG noncore/comm/mobilemsgmobilemsg.pro
87 CONFIG_MODPLUG core/multimedia/opieplayer/modplugmodplug.pro 87 CONFIG_MODPLUG core/multimedia/opieplayer/modplugmodplug.pro
88 CONFIG_MULTIKEY inputmethods/multikeymultikey.pro 88 CONFIG_MULTIKEY inputmethods/multikeymultikey.pro
89 CONFIG_NETSYSTEMTIME noncore/settings/netsystemtimenetsystemtime.pro 89 CONFIG_NETSYSTEMTIME noncore/settings/netsystemtimenetsystemtime.pro
90 CONFIG_NETWORKSETUP noncore/settings/networksettingsnetworksettings.pro 90 CONFIG_NETWORKSETUP noncore/settings/networksettingsnetworksettings.pro
91 CONFIG_NETWORKAPPLET noncore/applets/networkappletnetworkapplet.pro 91 CONFIG_NETWORKAPPLET noncore/applets/networkappletnetworkapplet.pro
92 CONFIG_NOTESAPPLET noncore/applets/notesappletnotesapplet.pro 92 CONFIG_NOTESAPPLET noncore/applets/notesappletnotesapplet.pro
93 CONFIG_OBEX core/applets/obex2obex.pro 93 CONFIG_OBEX core/applets/obex2obex.pro
94 CONFIG_OCOPSERVER x11/ipc/serverocopserver.pro 94 CONFIG_OCOPSERVER x11/ipc/serverocopserver.pro
95 CONFIG_ODICT noncore/apps/odictodict.pro 95 CONFIG_ODICT noncore/apps/odictodict.pro
96 CONFIG_OFILESELECTOR libopie/ofileselectorofileselector.pro 96 CONFIG_OFILESELECTOR libopie/ofileselectorofileselector.pro
97 CONFIG_OIPKG core/apps/oipkgoipkg.pro 97 CONFIG_OIPKG core/apps/oipkgoipkg.pro
98 CONFIG_OPIE-CONSOLE noncore/apps/opie-consoleopie-console.pro 98 CONFIG_OPIE-CONSOLE noncore/apps/opie-consoleopie-console.pro
99 CONFIG_OPIE-LOGIN core/opie-loginopie-login.pro 99 CONFIG_OPIE-LOGIN core/opie-loginopie-login.pro
100 CONFIG_OPIE-READER noncore/apps/opie-readeropie-reader.pro 100 CONFIG_OPIE-READER noncore/apps/opie-readeropie-reader.pro
101 CONFIG_OPIE-SH noncore/tools/opie-shopie-sh.pro 101 CONFIG_OPIE-SH noncore/tools/opie-shopie-sh.pro
102 CONFIG_OPIE-SHEET noncore/apps/opie-sheetopie-sheet.pro 102 CONFIG_OPIE-SHEET noncore/apps/opie-sheetopie-sheet.pro
103 CONFIG_OPIE-WRITE noncore/apps/opie-writeopie-write.pro 103 CONFIG_OPIE-WRITE noncore/apps/opie-writeopie-write.pro
104 CONFIG_OPIEALARMcore/opiealarm 104 CONFIG_OPIEALARMcore/opiealarm
105 CONFIG_OPIEFTP noncore/net/opieftpopieftp.pro 105 CONFIG_OPIEFTP noncore/net/opieftpopieftp.pro
106 CONFIG_OPIEIRC noncore/net/opieircopieirc.pro 106 CONFIG_OPIEIRC noncore/net/opieircopieirc.pro
107 CONFIG_OPIEMAIL2noncore/mail mail.pro 107 CONFIG_OPIEMAIL2noncore/mail mail.pro
108 CONFIG_OPIEPLAYER core/multimedia/opieplayeropieplayer.pro 108 CONFIG_OPIEPLAYER core/multimedia/opieplayeropieplayer.pro
109 CONFIG_OPIEPLAYER2 noncore/multimedia/opieplayer2opieplayer2.pro 109 CONFIG_OPIEPLAYER2 noncore/multimedia/opieplayer2opieplayer2.pro
110 CONFIG_OPIEREC noncore/multimedia/opierecopierec.pro 110 CONFIG_OPIEREC noncore/multimedia/opierecopierec.pro
111 CONFIG_OPIETOOTH-APPLET noncore/net/opietooth/appletapplet.pro 111 CONFIG_OPIETOOTH-APPLET noncore/net/opietooth/appletapplet.pro
112 CONFIG_OPIETOOTH-MANAGER noncore/net/opietooth/managermanager.pro 112 CONFIG_OPIETOOTH-MANAGER noncore/net/opietooth/managermanager.pro
113 CONFIG_OSEARCH noncore/apps/osearchosearch.pro 113 CONFIG_OSEARCH noncore/apps/osearchosearch.pro
114 CONFIG_OXYGEN noncore/apps/oxygenoxygen.pro 114 CONFIG_OXYGEN noncore/apps/oxygenoxygen.pro
115 CONFIG_PARASHOOT noncore/games/parashootparashoot.pro 115 CONFIG_PARASHOOT noncore/games/parashootparashoot.pro
116 CONFIG_PICKBOARD inputmethods/pickboardpickboard.pro 116 CONFIG_PICKBOARD inputmethods/pickboardpickboard.pro
117 CONFIG_QASTEROIDS noncore/games/qasteroidsqasteroids.pro 117 CONFIG_QASTEROIDS noncore/games/qasteroidsqasteroids.pro
118 CONFIG_QCOP core/apps/qcopqcop.pro 118 CONFIG_QCOP core/apps/qcopqcop.pro
119 CONFIG_QPDF noncore/graphics/qpdfqpdf.pro 119 CONFIG_QPDF noncore/graphics/qpdfqpdf.pro
120 CONFIG_QUICKEXEC quickexecquickexec.pro 120 CONFIG_QUICKEXEC quickexecquickexec.pro
121 CONFIG_QWS core/qwsqws.pro
121 CONFIG_REMOTE noncore/tools/remoteremote.pro 122 CONFIG_REMOTE noncore/tools/remoteremote.pro
122 CONFIG_RESTARTAPPLET core/applets/restartappletrestartapplet.pro 123 CONFIG_RESTARTAPPLET core/applets/restartappletrestartapplet.pro
123 CONFIG_RESTARTAPPLET2 core/applets/restartapplet2restartapplet2.pro 124 CONFIG_RESTARTAPPLET2 core/applets/restartapplet2restartapplet2.pro
124 CONFIG_ROTATEAPPLET core/applets/rotateappletrotateapplet.pro 125 CONFIG_ROTATEAPPLET core/applets/rotateappletrotateapplet.pro
125 CONFIG_ROTATION noncore/settings/rotationrotation.pro 126 CONFIG_ROTATION noncore/settings/rotationrotation.pro
126 CONFIG_RUNAPPLET core/applets/runappletrunapplet.pro 127 CONFIG_RUNAPPLET core/applets/runappletrunapplet.pro
127 CONFIG_SCREENSHOTAPPLET core/applets/screenshotappletscreenshotapplet.pro 128 CONFIG_SCREENSHOTAPPLET core/applets/screenshotappletscreenshotapplet.pro
128 CONFIG_SECURITY core/settings/securitysecurity.pro 129 CONFIG_SECURITY core/settings/securitysecurity.pro
129 CONFIG_SFCAVE noncore/games/sfcavesfcave.pro 130 CONFIG_SFCAVE noncore/games/sfcavesfcave.pro
130 CONFIG_SFCAVE-SDL noncore/games/sfcave-sdlsfcave-sdl.pro 131 CONFIG_SFCAVE-SDL noncore/games/sfcave-sdlsfcave-sdl.pro
131 CONFIG_SHOWIMG noncore/multimedia/showimgshowimg.pro 132 CONFIG_SHOWIMG noncore/multimedia/showimgshowimg.pro
132 CONFIG_SIMPLE noncore/tools/calc2/simplesimple.pro 133 CONFIG_SIMPLE noncore/tools/calc2/simplesimple.pro
133 CONFIG_SINGLE singlesingle.pro 134 CONFIG_SINGLE singlesingle.pro
134 CONFIG_SNAKE noncore/games/snakesnake.pro 135 CONFIG_SNAKE noncore/games/snakesnake.pro
135 CONFIG_SOLITAIRE noncore/games/solitairesolitaire.pro 136 CONFIG_SOLITAIRE noncore/games/solitairesolitaire.pro
136 CONFIG_SOUND noncore/settings/soundsound.pro 137 CONFIG_SOUND noncore/settings/soundsound.pro
137 CONFIG_SSHKEYS noncore/settings/sshkeyssshkeys.pro 138 CONFIG_SSHKEYS noncore/settings/sshkeyssshkeys.pro
138 CONFIG_SUSPENDAPPLET core/applets/suspendappletsuspendapplet.pro 139 CONFIG_SUSPENDAPPLET core/applets/suspendappletsuspendapplet.pro
139 CONFIG_SYSINFO noncore/apps/sysinfosysinfo.pro 140 CONFIG_SYSINFO noncore/apps/sysinfosysinfo.pro
140 CONFIG_TABLEVIEWER noncore/apps/tableviewertableviewer.pro 141 CONFIG_TABLEVIEWER noncore/apps/tableviewertableviewer.pro
141 CONFIG_TABMANAGER noncore/settings/tabmanagertabmanager.pro 142 CONFIG_TABMANAGER noncore/settings/tabmanagertabmanager.pro
142 CONFIG_TEST libsql/testtest.pro 143 CONFIG_TEST libsql/testtest.pro
143 CONFIG_TEST noncore/apps/opie-console/testtest.pro 144 CONFIG_TEST noncore/apps/opie-console/testtest.pro
144 CONFIG_TETRIX noncore/games/tetrixtetrix.pro 145 CONFIG_TETRIX noncore/games/tetrixtetrix.pro
145 CONFIG_TEXTEDIT core/apps/textedittextedit.pro 146 CONFIG_TEXTEDIT core/apps/textedittextedit.pro
146 CONFIG_THEME noncore/styles/themetheme.pro 147 CONFIG_THEME noncore/styles/themetheme.pro
147 CONFIG_TICTAC noncore/games/tictactictac.pro 148 CONFIG_TICTAC noncore/games/tictactictac.pro
148 CONFIG_TINYKATE noncore/apps/tinykatetinykate.pro 149 CONFIG_TINYKATE noncore/apps/tinykatetinykate.pro
149 CONFIG_TODAY core/pim/todaytoday.pro 150 CONFIG_TODAY core/pim/todaytoday.pro
150CONFIG_TODAY_ADDRESSBOOK core/pim/today/plugins/addressbook addressbook.pro 151CONFIG_TODAY_ADDRESSBOOK core/pim/today/plugins/addressbook addressbook.pro
151 CONFIG_TODAY_DATEBOOK core/pim/today/plugins/datebookdatebook.pro 152 CONFIG_TODAY_DATEBOOK core/pim/today/plugins/datebookdatebook.pro
152 CONFIG_TODAY_FORTUNE noncore/todayplugins/fortunefortune.pro 153 CONFIG_TODAY_FORTUNE noncore/todayplugins/fortunefortune.pro
153 CONFIG_TODAY_MAIL core/pim/today/plugins/mailmail.pro 154 CONFIG_TODAY_MAIL core/pim/today/plugins/mailmail.pro
154 CONFIG_TODAY_STOCKTICKER noncore/todayplugins/stockticker/stocktickerstockticker.pro 155 CONFIG_TODAY_STOCKTICKER noncore/todayplugins/stockticker/stocktickerstockticker.pro
155 CONFIG_TODAY_STOCKTICKERLIB noncore/todayplugins/stockticker/stocktickerlibstocktickerlib.pro 156 CONFIG_TODAY_STOCKTICKERLIB noncore/todayplugins/stockticker/stocktickerlibstocktickerlib.pro
156 CONFIG_TODAY_TODOLIST core/pim/today/plugins/todolisttodolist.pro 157 CONFIG_TODAY_TODOLIST core/pim/today/plugins/todolisttodolist.pro
157 CONFIG_TODAY_WEATHERnoncore/todayplugins/weather weather.pro 158 CONFIG_TODAY_WEATHERnoncore/todayplugins/weather weather.pro
158 CONFIG_TODO core/pim/todotodo.pro 159 CONFIG_TODO core/pim/todotodo.pro
159CONFIG_LIBTREMOR core/multimedia/opieplayer/vorbis/tremor tremor.pro 160CONFIG_LIBTREMOR core/multimedia/opieplayer/vorbis/tremor tremor.pro
160CONFIG_LIBTREMORPLUGIN core/multimedia/opieplayer/vorbis libtremor.pro 161CONFIG_LIBTREMORPLUGIN core/multimedia/opieplayer/vorbis libtremor.pro
161 CONFIG_UBROWSER noncore/net/ubrowserubrowser.pro 162 CONFIG_UBROWSER noncore/net/ubrowserubrowser.pro
162 CONFIG_UNIKEYBOARD inputmethods/unikeyboardunikeyboard.pro 163 CONFIG_UNIKEYBOARD inputmethods/unikeyboardunikeyboard.pro
163 CONFIG_USERMANAGER noncore/settings/usermanagerusermanager.pro 164 CONFIG_USERMANAGER noncore/settings/usermanagerusermanager.pro
164 CONFIG_VMEMO core/applets/vmemovmemo.pro 165 CONFIG_VMEMO core/applets/vmemovmemo.pro
165 CONFIG_VOLUMEAPPLET core/applets/volumeappletvolumeapplet.pro 166 CONFIG_VOLUMEAPPLET core/applets/volumeappletvolumeapplet.pro
166 CONFIG_WAVPLUGIN core/multimedia/opieplayer/wavpluginwavplugin.pro 167 CONFIG_WAVPLUGIN core/multimedia/opieplayer/wavpluginwavplugin.pro
167 CONFIG_WELLENREITER noncore/net/wellenreiterwellenreiter.pro 168 CONFIG_WELLENREITER noncore/net/wellenreiterwellenreiter.pro
168 CONFIG_WIRELESSAPPLET noncore/applets/wirelessappletwirelessapplet.pro 169 CONFIG_WIRELESSAPPLET noncore/applets/wirelessappletwirelessapplet.pro