From: antab at uclibc.org <antab@uclibc.org>
To: buildroot@busybox.net
Subject: [Buildroot] svn commit: trunk/buildroot/package/qtopia4
Date: Fri, 31 Oct 2008 10:17:23 -0700 (PDT) [thread overview]
Message-ID: <20081031171723.6F149F8055@busybox.net> (raw)
Author: antab
Date: 2008-10-31 10:17:23 -0700 (Fri, 31 Oct 2008)
New Revision: 23886
Log:
Add options to select what gfx and mouse drivers are compiled in.
Note to tslib users: You now have to select the tslib mouse driver to build it.
Added:
trunk/buildroot/package/qtopia4/Config.gfx.in
trunk/buildroot/package/qtopia4/Config.mouse.in
Modified:
trunk/buildroot/package/qtopia4/Config.in
trunk/buildroot/package/qtopia4/Config.sql.in
trunk/buildroot/package/qtopia4/qtopia4.mk
Changeset:
Added: trunk/buildroot/package/qtopia4/Config.gfx.in
===================================================================
--- trunk/buildroot/package/qtopia4/Config.gfx.in (rev 0)
+++ trunk/buildroot/package/qtopia4/Config.gfx.in 2008-10-31 17:17:23 UTC (rev 23886)
@@ -0,0 +1,23 @@
+menu "Graphics drivers"
+
+config BR2_PACKAGE_QTOPIA4_GFX_LINUXFB
+ bool "Linux Framebuffer"
+ default y
+
+config BR2_PACKAGE_QTOPIA4_GFX_TRANSFORMED
+ bool "Transformed"
+ default n
+
+config BR2_PACKAGE_QTOPIA4_GFX_QVFB
+ bool "Qt Virtual Framebuffer"
+ default n
+
+config BR2_PACKAGE_QTOPIA4_GFX_VNC
+ bool "VNC"
+ default n
+
+config BR2_PACKAGE_QTOPIA4_GFX_MULTISCREEN
+ bool "multiscreen"
+ default y
+
+endmenu
Modified: trunk/buildroot/package/qtopia4/Config.in
===================================================================
--- trunk/buildroot/package/qtopia4/Config.in 2008-10-31 16:37:01 UTC (rev 23885)
+++ trunk/buildroot/package/qtopia4/Config.in 2008-10-31 17:17:23 UTC (rev 23886)
@@ -224,13 +224,9 @@
help
The target platform.
-menuconfig BR2_PACKAGE_QTOPIA4_SQL_MODULE
- bool "SQL Module"
- help
- Compile Qtopia SQL Module
-if BR2_PACKAGE_QTOPIA4_SQL_MODULE
source "package/qtopia4/Config.sql.in"
-endif
+source "package/qtopia4/Config.gfx.in"
+source "package/qtopia4/Config.mouse.in"
config BR2_PACKAGE_QTOPIA4_XMLPATTERNS
bool "XML Patterns Module"
Added: trunk/buildroot/package/qtopia4/Config.mouse.in
===================================================================
--- trunk/buildroot/package/qtopia4/Config.mouse.in (rev 0)
+++ trunk/buildroot/package/qtopia4/Config.mouse.in 2008-10-31 17:17:23 UTC (rev 23886)
@@ -0,0 +1,31 @@
+menu "Mouse drivers"
+
+config BR2_PACKAGE_QTOPIA4_MOUSE_PC
+ bool "pc"
+ default n
+
+config BR2_PACKAGE_QTOPIA4_MOUSE_BUS
+ bool "bus"
+ default n
+
+config BR2_PACKAGE_QTOPIA4_MOUSE_LINUXTP
+ bool "linuxtp"
+ default n
+
+config BR2_PACKAGE_QTOPIA4_MOUSE_YOPY
+ bool "yopy"
+ default n
+
+config BR2_PACKAGE_QTOPIA4_MOUSE_VR41XX
+ bool "vxr41xx"
+ default n
+
+config BR2_PACKAGE_QTOPIA4_MOUSE_TSLIB
+ bool "tslib"
+ default n
+
+config BR2_PACKAGE_QTOPIA4_MOUSE_QVFB
+ bool "qvfb"
+ default n
+
+endmenu
Modified: trunk/buildroot/package/qtopia4/Config.sql.in
===================================================================
--- trunk/buildroot/package/qtopia4/Config.sql.in 2008-10-31 16:37:01 UTC (rev 23885)
+++ trunk/buildroot/package/qtopia4/Config.sql.in 2008-10-31 17:17:23 UTC (rev 23886)
@@ -1,3 +1,9 @@
+menuconfig BR2_PACKAGE_QTOPIA4_SQL_MODULE
+ bool "SQL Module"
+ help
+ Compile Qtopia SQL Module
+
+if BR2_PACKAGE_QTOPIA4_SQL_MODULE
config BR2_PACKAGE_QTOPIA4_MYSQL
bool "MySQL Driver"
help
@@ -33,4 +39,4 @@
help
Build SQLite 2 driver
If unsure, say n.
-
+endif
Modified: trunk/buildroot/package/qtopia4/qtopia4.mk
===================================================================
--- trunk/buildroot/package/qtopia4/qtopia4.mk 2008-10-31 16:37:01 UTC (rev 23885)
+++ trunk/buildroot/package/qtopia4/qtopia4.mk 2008-10-31 17:17:23 UTC (rev 23886)
@@ -65,12 +65,68 @@
QTOPIA4_CONFIGURE+= -no-qt3support
endif
-ifeq ($(BR2_PACKAGE_TSLIB),y)
-QTOPIA4_CONFIGURE+= -qt-mouse-tslib
+
+### Display drivers
+ifeq ($(BR2_PACKAGE_QTOPIA4_GFX_LINUXFB),y)
+QTOPIA4_CONFIGURE += -qt-gfx-linuxfb
+else
+QTOPIA4_CONFIGURE += -no-gfx-linuxfb
+endif
+ifeq ($(BR2_PACKAGE_QTOPIA4_GFX_TRANSFORMED),y)
+QTOPIA4_CONFIGURE += -qt-gfx-transformed
+else
+QTOPIA4_CONFIGURE += -no-gfx-transformed
+endif
+ifeq ($(BR2_PACKAGE_QTOPIA4_GFX_QVFB),y)
+QTOPIA4_CONFIGURE += -qt-gfx-qvfb
+else
+QTOPIA4_CONFIGURE += -no-gfx-qvfb
+endif
+ifeq ($(BR2_PACKAGE_QTOPIA4_GFX_VNC),y)
+QTOPIA4_CONFIGURE += -qt-gfx-vnc
+else
+QTOPIA4_CONFIGURE += -no-gfx-vnc
+endif
+ifeq ($(BR2_PACKAGE_QTOPIA4_GFX_MULTISCREEN),y)
+QTOPIA4_CONFIGURE += -qt-gfx-multiscreen
+else
+QTOPIA4_CONFIGURE += -no-gfx-multiscreen
+endif
+
+### Mouse drivers
+ifeq ($(BR2_PACKAGE_QTOPIA4_MOUSE_PC),y)
+QTOPIA4_CONFIGURE += qt-mouse-pc
+else
+QTOPIA4_CONFIGURE += -no-mouse-pc
+endif
+ifeq ($(BR2_PACKAGE_QTOPIA4_MOUSE_BUS),y)
+QTOPIA4_CONFIGURE += qt-mouse-bus
+else
+QTOPIA4_CONFIGURE += -no-mouse-bus
+endif
+ifeq ($(BR2_PACKAGE_QTOPIA4_MOUSE_LINUXTP),y)
+QTOPIA4_CONFIGURE += qt-mouse-linuxtp
+else
+QTOPIA4_CONFIGURE += -no-mouse-linuxtp
+endif
+ifeq ($(BR2_PACKAGE_QTOPIA4_MOUSE_YOPY),y)
+QTOPIA4_CONFIGURE += qt-mouse-yopy
+else
+QTOPIA4_CONFIGURE += -no-mouse-yopy
+endif
+ifeq ($(BR2_PACKAGE_QTOPIA4_MOUSE_VR41XX),y)
+QTOPIA4_CONFIGURE += qt-mouse-vr41xx
+else
+QTOPIA4_CONFIGURE += -no-mouse-vr41xx
+endif
+ifeq ($(BR2_PACKAGE_QTOPIA4_MOUSE_TSLIB),y)
+QTOPIA4_CONFIGURE += qt-mouse-tslib
QTOPIA4_DEP_LIBS+=tslib
QTOPIA4_TSLIB_DEB="-D TSLIBMOUSEHANDLER_DEBUG"
QTOPIA4_TSLIB_DEB:=$(strip $(subst ",, $(QTOPIA4_TSLIB_DEB)))
#"))
+else
+QTOPIA4_CONFIGURE += -no-mouse-tslib
endif
ifeq ($(BR2_PACKAGE_QTOPIA4_DEBUG),y)
next reply other threads:[~2008-10-31 17:17 UTC|newest]
Thread overview: 75+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-10-31 17:17 antab at uclibc.org [this message]
2008-11-01 11:47 ` [Buildroot] svn commit: trunk/buildroot/package/qtopia4 Markus Heidelberg
2008-11-01 13:46 ` Arnar Mar Sigurðsson
2008-11-01 17:42 ` Thiago A. Corrêa
2008-11-01 19:15 ` Markus Heidelberg
2008-11-02 20:19 ` Peter Korsgaard
-- strict thread matches above, loose matches on Subject: below --
2009-03-05 15:35 jacmet at uclibc.org
2009-01-25 20:19 jacmet at uclibc.org
2008-12-08 18:00 egtvedt at uclibc.org
2008-12-04 16:50 egtvedt at uclibc.org
2008-12-01 13:06 egtvedt at uclibc.org
2008-12-01 13:08 ` Thomas Petazzoni
2008-12-01 13:12 ` Hans-Christian Egtvedt
2008-12-01 13:19 ` Thomas Petazzoni
2008-12-01 13:25 ` Hans-Christian Egtvedt
2008-12-01 13:39 ` Thomas Petazzoni
2008-12-01 13:43 ` Hans-Christian Egtvedt
2008-11-11 18:35 tpetazzoni at uclibc.org
2008-11-02 2:16 antab at uclibc.org
2008-11-02 14:14 ` Markus Heidelberg
2008-11-02 20:22 ` Peter Korsgaard
2008-10-31 2:17 correa at uclibc.org
2008-10-29 20:40 jacmet at uclibc.org
2008-10-28 9:40 jacmet at uclibc.org
2008-10-28 9:40 jacmet at uclibc.org
2008-10-29 14:11 ` Arnar Mar Sigurðsson
2008-10-29 15:21 ` Peter Korsgaard
2008-10-29 16:01 ` Thiago A. Corrêa
2008-10-29 16:36 ` Arnar Mar Sigurðsson
2008-10-29 18:02 ` Markus Heidelberg
2008-10-26 6:03 jacmet at uclibc.org
2008-09-29 16:27 egtvedt at uclibc.org
2008-09-03 3:44 correa at uclibc.org
2008-09-03 1:09 correa at uclibc.org
2008-08-27 20:19 jacmet at uclibc.org
2008-06-28 3:55 correa at uclibc.org
2008-06-28 3:22 correa at uclibc.org
2008-05-21 5:52 ulf at uclibc.org
2008-05-21 5:48 ulf at uclibc.org
2008-05-11 6:45 ulf at uclibc.org
2008-04-25 11:45 ninevoltz at uclibc.org
2008-04-24 18:44 ninevoltz at uclibc.org
2008-04-24 19:04 ` Peter Korsgaard
2008-04-24 19:30 ` John Voltz
2008-04-24 19:47 ` Peter Korsgaard
2008-04-24 20:27 ` Thiago A. Corrêa
2008-04-25 7:23 ` Hans-Christian Egtvedt
2008-04-25 13:31 ` Thiago A. Corrêa
2008-04-25 13:45 ` Peter Korsgaard
2008-04-23 15:27 jacmet at uclibc.org
2008-03-12 13:53 ninevoltz at uclibc.org
2008-03-12 14:20 ` Peter Korsgaard
2008-03-12 15:18 ` Thomas Petazzoni
2008-03-12 18:26 ` Will Wagner
2008-03-13 6:25 ` Hans-Christian Egtvedt
2008-03-12 18:44 ` Will Wagner
2008-03-12 18:55 ` John Voltz
2008-03-13 6:26 ` Hans-Christian Egtvedt
2008-03-13 10:38 ` Will Wagner
2008-03-13 11:21 ` Hans-Christian Egtvedt
2008-03-13 11:27 ` Will Wagner
2008-03-06 18:22 ninevoltz at uclibc.org
2008-01-25 10:20 thomasez at uclibc.org
2007-12-18 15:12 vanokuten at uclibc.org
2007-09-26 10:23 ulf at uclibc.org
2007-09-26 11:07 ` Peter Korsgaard
2007-09-26 11:30 ` Ulf Samuelsson
2007-09-26 11:48 ` Peter Korsgaard
2007-09-26 18:27 ` rafael2k
2007-09-23 16:29 ulf at uclibc.org
2007-08-28 23:06 ulf at uclibc.org
2007-08-22 19:31 aldot at uclibc.org
2007-08-21 8:31 aldot at uclibc.org
2007-07-28 17:26 ulf at uclibc.org
2007-07-28 15:41 ulf at uclibc.org
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20081031171723.6F149F8055@busybox.net \
--to=antab@uclibc.org \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox