* [Buildroot] [PATCH 1/2] qt5: add rPi EGL glue code
@ 2013-03-01 22:13 Floris Bos
2013-03-01 22:13 ` [Buildroot] [PATCH 2/2] rpi-userland: add bcm_host to egl.pc Floris Bos
2013-03-03 19:09 ` [Buildroot] [PATCH 1/2] qt5: add rPi EGL glue code Thomas Petazzoni
0 siblings, 2 replies; 3+ messages in thread
From: Floris Bos @ 2013-03-01 22:13 UTC (permalink / raw)
To: buildroot
When the rpi-userland package is selected, assume we are targetting
the Raspberry Pi, and add the right platform glue code when building
the Qt5 EGLFS plugin.
Signed-off-by: Floris Bos <bos@je-eigen-domein.nl>
---
package/qt5/qt5base/qt5base-mkspecs-files.patch | 5 ++++-
package/qt5/qt5base/qt5base.mk | 6 ++++++
2 files changed, 10 insertions(+), 1 deletion(-)
diff --git a/package/qt5/qt5base/qt5base-mkspecs-files.patch b/package/qt5/qt5base/qt5base-mkspecs-files.patch
index a86d0b1..d5827f6 100644
--- a/package/qt5/qt5base/qt5base-mkspecs-files.patch
+++ b/package/qt5/qt5base/qt5base-mkspecs-files.patch
@@ -14,7 +14,7 @@ Index: b/mkspecs/devices/linux-buildroot-g++/qmake.conf
===================================================================
--- /dev/null
+++ b/mkspecs/devices/linux-buildroot-g++/qmake.conf
-@@ -0,0 +1,38 @@
+@@ -0,0 +1,41 @@
+MAKEFILE_GENERATOR = UNIX
+CONFIG += incremental gdb_dwarf_index
+QMAKE_INCREMENTAL_STYLE = sublib
@@ -49,6 +49,9 @@ Index: b/mkspecs/devices/linux-buildroot-g++/qmake.conf
+
+QMAKE_LIBS += -lrt -lpthread -ldl
+
++# device specific glue code
++EGLFS_PLATFORM_HOOKS_SOURCES =
++
+# Sanity check
+deviceSanityCheckCompiler()
+
diff --git a/package/qt5/qt5base/qt5base.mk b/package/qt5/qt5base/qt5base.mk
index 0ea15c2..f44da31 100644
--- a/package/qt5/qt5base/qt5base.mk
+++ b/package/qt5/qt5base/qt5base.mk
@@ -75,6 +75,10 @@ endif
ifeq ($(BR2_PACKAGE_QT5BASE_EGLFS),y)
QT5BASE_CONFIGURE_OPTS += -opengl es2 -eglfs
QT5BASE_DEPENDENCIES += libgles libegl
+ifeq ($(BR2_PACKAGE_RPI_USERLAND),y)
+QT5BASE_EGLFS_PLATFORM_HOOKS_SOURCES = \
+ $(@D)/mkspecs/devices/linux-rasp-pi-g++/qeglfshooks_pi.cpp
+endif
else
QT5BASE_CONFIGURE_OPTS += -no-opengl -no-eglfs
endif
@@ -125,6 +129,8 @@ define QT5BASE_CONFIGURE_CMDS
$(call QT5BASE_CONFIG_SET,CROSS_COMPILE,$(TARGET_CROSS))
$(call QT5BASE_CONFIG_SET,COMPILER_CFLAGS,$(TARGET_CFLAGS))
$(call QT5BASE_CONFIG_SET,COMPILER_CXXFLAGS,$(TARGET_CXXFLAGS))
+ $(call QT5BASE_CONFIG_SET,EGLFS_PLATFORM_HOOKS_SOURCES, \
+ $(QT5BASE_EGLFS_PLATFORM_HOOKS_SOURCES))
(cd $(@D); \
PKG_CONFIG="$(PKG_CONFIG_HOST_BINARY)" \
PKG_CONFIG_LIBDIR="$(STAGING_DIR)/usr/lib/pkgconfig" \
--
1.7.10.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH 2/2] rpi-userland: add bcm_host to egl.pc
2013-03-01 22:13 [Buildroot] [PATCH 1/2] qt5: add rPi EGL glue code Floris Bos
@ 2013-03-01 22:13 ` Floris Bos
2013-03-03 19:09 ` [Buildroot] [PATCH 1/2] qt5: add rPi EGL glue code Thomas Petazzoni
1 sibling, 0 replies; 3+ messages in thread
From: Floris Bos @ 2013-03-01 22:13 UTC (permalink / raw)
To: buildroot
bcm_host is the Broadcom hardware interface library
And is currently a dependency to use the EGL functions
Signed-off-by: Floris Bos <bos@je-eigen-domein.nl>
---
package/rpi-userland/rpi-userland-add-pkgconfig-files.patch | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/package/rpi-userland/rpi-userland-add-pkgconfig-files.patch b/package/rpi-userland/rpi-userland-add-pkgconfig-files.patch
index 0da9afd..4ffc2b0 100644
--- a/package/rpi-userland/rpi-userland-add-pkgconfig-files.patch
+++ b/package/rpi-userland/rpi-userland-add-pkgconfig-files.patch
@@ -9,7 +9,7 @@ Index: b/interface/khronos/egl/egl.pc.in
===================================================================
--- /dev/null
+++ b/interface/khronos/egl/egl.pc.in
-@@ -0,0 +1,10 @@
+@@ -0,0 +1,11 @@
+prefix=@CMAKE_INSTALL_PREFIX@
+exec_prefix=${prefix}
+libdir=${exec_prefix}/lib
@@ -18,8 +18,9 @@ Index: b/interface/khronos/egl/egl.pc.in
+Name: egl
+Description: RasberryPi implementation of EGL
+Version: 1.0
-+Libs: -L${libdir} -lEGL -lGLESv2
-+Cflags: -I${includedir}/ -I${includedir}/interface/vcos/pthreads/
++Libs: -L${libdir} -lEGL -lGLESv2 -lbcm_host
++Cflags: -I${includedir}/ -I${includedir}/interface/vcos/pthreads/ \
++ -I${includedir}/interface/vmcs_host/linux/
Index: b/interface/khronos/CMakeLists.txt
===================================================================
--- a/interface/khronos/CMakeLists.txt
--
1.7.10.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH 1/2] qt5: add rPi EGL glue code
2013-03-01 22:13 [Buildroot] [PATCH 1/2] qt5: add rPi EGL glue code Floris Bos
2013-03-01 22:13 ` [Buildroot] [PATCH 2/2] rpi-userland: add bcm_host to egl.pc Floris Bos
@ 2013-03-03 19:09 ` Thomas Petazzoni
1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2013-03-03 19:09 UTC (permalink / raw)
To: buildroot
Dear Floris Bos,
On Fri, 1 Mar 2013 23:13:13 +0100, Floris Bos wrote:
> When the rpi-userland package is selected, assume we are targetting
> the Raspberry Pi, and add the right platform glue code when building
> the Qt5 EGLFS plugin.
>
> Signed-off-by: Floris Bos <bos@je-eigen-domein.nl>
Thanks. I've applied your 3 patches (the two ones related to Rasberry
Pi), and the one related to installation of fonts. They will be sent
when I send the next version of my Qt5 pull request.
Thanks!
Thomas
--
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-03-03 19:09 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-01 22:13 [Buildroot] [PATCH 1/2] qt5: add rPi EGL glue code Floris Bos
2013-03-01 22:13 ` [Buildroot] [PATCH 2/2] rpi-userland: add bcm_host to egl.pc Floris Bos
2013-03-03 19:09 ` [Buildroot] [PATCH 1/2] qt5: add rPi EGL glue code Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox