All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] meta-intel: emgd updates
@ 2011-09-27  3:57 tom.zanussi
  2011-09-27  3:57 ` [PATCH 1/2] meta-intel: fix symlink typo and QA checks in emgd-driver-bin tom.zanussi
  2011-09-27  3:57 ` [PATCH 2/2] meta-crownbay: remove emgd-1.6 tom.zanussi
  0 siblings, 2 replies; 3+ messages in thread
From: tom.zanussi @ 2011-09-27  3:57 UTC (permalink / raw)
  To: yocto

From: Tom Zanussi <tom.zanussi@intel.com>

This small patchset fixes a typo and some QA warnings in
emgd-driver-bin_1.8.

It also removes obsolete emgd-1.6 support.

The following changes since commit d286d43b6552dc2abffe7888d726d8b08f77b96c:
  Tom Zanussi (1):
        meta-intel: update SRCREVs

are available in the git repository at:

  git://git.yoctoproject.org/meta-intel.git tzanussi/emgd-1.8-fixes
  http://git.yoctoproject.org/cgit/cgit.cgi/meta-intel/log/?h=tzanussi/emgd-1.8-fixes

Tom Zanussi (2):
  meta-intel: fix symlink typo and QA checks in emgd-driver-bin
  meta-crownbay: remove emgd-1.6

 .../xorg-xserver/emgd-driver-bin_1.8.bb            |    8 ++++--
 .../xorg-xserver/emgd-driver-bin_1.6.bb            |   25 --------------------
 2 files changed, 5 insertions(+), 28 deletions(-)
 delete mode 100644 meta-crownbay/recipes-graphics/xorg-xserver/emgd-driver-bin-1.6/.gitignore
 delete mode 100644 meta-crownbay/recipes-graphics/xorg-xserver/emgd-driver-bin_1.6.bb



^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH 1/2] meta-intel: fix symlink typo and QA checks in emgd-driver-bin
  2011-09-27  3:57 [PATCH 0/2] meta-intel: emgd updates tom.zanussi
@ 2011-09-27  3:57 ` tom.zanussi
  2011-09-27  3:57 ` [PATCH 2/2] meta-crownbay: remove emgd-1.6 tom.zanussi
  1 sibling, 0 replies; 3+ messages in thread
From: tom.zanussi @ 2011-09-27  3:57 UTC (permalink / raw)
  To: yocto

From: Tom Zanussi <tom.zanussi@intel.com>

There was a typo in the libEGL.so symlink creation - this fixes it.

It also adds a missing symlink for scope services, and fixes the QA
warnings for 'non-dev package contains symlink .so...'.

Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
---
 .../xorg-xserver/emgd-driver-bin_1.8.bb            |    8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/common/recipes-graphics/xorg-xserver/emgd-driver-bin_1.8.bb b/common/recipes-graphics/xorg-xserver/emgd-driver-bin_1.8.bb
index 8f309c9..88e8a55 100644
--- a/common/recipes-graphics/xorg-xserver/emgd-driver-bin_1.8.bb
+++ b/common/recipes-graphics/xorg-xserver/emgd-driver-bin_1.8.bb
@@ -6,7 +6,7 @@ see the README in meta-crownbay/ for instructions on the (simple) manual \
 steps necessary to make the necessary binaries available to this recipe.  \
 Please do that before building an image."
 LICENSE = "Intel-binary-only"
-PR = "r0"
+PR = "r1"
 
 LIC_FILES_CHKSUM = "file://${WORKDIR}/License.txt;md5=b54f01caaf8483b3cb60c0c40f2bf22d"
 
@@ -15,7 +15,8 @@ FILESPATH = "${FILE_DIRNAME}/emgd-driver-bin-1.8"
 SRC_URI = "file://lib \
            file://License.txt"
 
-FILES_${PN} += "${libdir}/dri ${libdir}/xorg/modules/drivers ${libdir}/*.so"
+FILES_${PN} += "${libdir}/dri ${libdir}/xorg/modules/drivers"
+FILES_${PN}-dev += "${libdir}/*.so"
 FILES_${PN}-dbg += "${libdir}/xorg/modules/drivers/.debug ${libdir}/dri/.debug"
 
 S = "${WORKDIR}"
@@ -27,9 +28,10 @@ do_install () {
     install -m 0755 ${S}/lib/dri/*        ${D}${libdir}/dri/
     install -m 0755 ${S}/lib/xorg/modules/drivers/* ${D}${libdir}/xorg/modules/drivers/
 
-    ln -sf libEGl.so.1                    ${D}${libdir}/libEGl.so
+    ln -sf libEGL.so.1                    ${D}${libdir}/libEGL.so
     ln -sf libGLES_CM.so.1                ${D}${libdir}/libGLES_CM.so
     ln -sf libGLESv2.so.2                 ${D}${libdir}/libGLESv2.so
+    ln -sf libEMGDScopeServices.so.1.5.15.3226 ${D}${libdir}/libPVRScopeServices.so
 }
 
 LEAD_SONAME = "libEGL.so"
-- 
1.7.0.4



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH 2/2] meta-crownbay: remove emgd-1.6
  2011-09-27  3:57 [PATCH 0/2] meta-intel: emgd updates tom.zanussi
  2011-09-27  3:57 ` [PATCH 1/2] meta-intel: fix symlink typo and QA checks in emgd-driver-bin tom.zanussi
@ 2011-09-27  3:57 ` tom.zanussi
  1 sibling, 0 replies; 3+ messages in thread
From: tom.zanussi @ 2011-09-27  3:57 UTC (permalink / raw)
  To: yocto

From: Tom Zanussi <tom.zanussi@intel.com>

emgd-1.6 is now obsoleted by emgd-1.8, so remove support for it.

Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
---
 .../xorg-xserver/emgd-driver-bin_1.8.bb            |    2 +-
 .../xorg-xserver/emgd-driver-bin_1.6.bb            |   25 --------------------
 2 files changed, 1 insertions(+), 26 deletions(-)
 delete mode 100644 meta-crownbay/recipes-graphics/xorg-xserver/emgd-driver-bin-1.6/.gitignore
 delete mode 100644 meta-crownbay/recipes-graphics/xorg-xserver/emgd-driver-bin_1.6.bb

diff --git a/common/recipes-graphics/xorg-xserver/emgd-driver-bin_1.8.bb b/common/recipes-graphics/xorg-xserver/emgd-driver-bin_1.8.bb
index 88e8a55..8dc43ea 100644
--- a/common/recipes-graphics/xorg-xserver/emgd-driver-bin_1.8.bb
+++ b/common/recipes-graphics/xorg-xserver/emgd-driver-bin_1.8.bb
@@ -6,7 +6,7 @@ see the README in meta-crownbay/ for instructions on the (simple) manual \
 steps necessary to make the necessary binaries available to this recipe.  \
 Please do that before building an image."
 LICENSE = "Intel-binary-only"
-PR = "r1"
+PR = "r7"
 
 LIC_FILES_CHKSUM = "file://${WORKDIR}/License.txt;md5=b54f01caaf8483b3cb60c0c40f2bf22d"
 
diff --git a/meta-crownbay/recipes-graphics/xorg-xserver/emgd-driver-bin-1.6/.gitignore b/meta-crownbay/recipes-graphics/xorg-xserver/emgd-driver-bin-1.6/.gitignore
deleted file mode 100644
index e69de29..0000000
diff --git a/meta-crownbay/recipes-graphics/xorg-xserver/emgd-driver-bin_1.6.bb b/meta-crownbay/recipes-graphics/xorg-xserver/emgd-driver-bin_1.6.bb
deleted file mode 100644
index 4d5d1e2..0000000
--- a/meta-crownbay/recipes-graphics/xorg-xserver/emgd-driver-bin_1.6.bb
+++ /dev/null
@@ -1,25 +0,0 @@
-SUMMARY = "EMGD 1.6 xserver binaries"
-DESCRIPTION = "EMGD 1.6 includes some userspace binaries that use non-free licensing.  Intel Open Source Technology Center unfortunately has no power to change that, but tries to make their use as painless as possible.  Please see the README in meta-crownbay/ for instructions on the (simple) manual steps necessary to make the necessary binaries available to this recipe.  Please do that before building an image."
-
-LICENSE = "Intel-binary-only"
-LIC_FILES_CHKSUM = "file://${WORKDIR}/License.txt;md5=b54f01caaf8483b3cb60c0c40f2bf22d"
-PR = "r0"
-
-FILESPATH = "${FILE_DIRNAME}/emgd-driver-bin-1.6"
-
-FILES_${PN} = "${libdir}/*.so.* ${libdir}/dri ${libdir}/xorg/modules/drivers"
-
-SRC_URI = "file://lib \
-           file://License.txt"
-
-S = "${WORKDIR}"
-
-do_install () {
-	install -d -m 0755 ${D}/${libdir}/dri ${D}/${libdir}/xorg/modules/drivers
-
-	cp -PR	${S}/lib/lib*					${D}${libdir}
-	install -m 0755	${S}/lib/xorg/modules/drivers/*		${D}${libdir}/xorg/modules/drivers/
-	install -m 0755	${S}/lib/dri/*				${D}${libdir}/dri/
-}
-
-LEAD_SONAME = "libEGL.so"
-- 
1.7.0.4



^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-09-27  3:59 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-09-27  3:57 [PATCH 0/2] meta-intel: emgd updates tom.zanussi
2011-09-27  3:57 ` [PATCH 1/2] meta-intel: fix symlink typo and QA checks in emgd-driver-bin tom.zanussi
2011-09-27  3:57 ` [PATCH 2/2] meta-crownbay: remove emgd-1.6 tom.zanussi

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.