All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-raspberrypi][PATCH 1/2] userland: Update to tip of tree
@ 2016-05-13 16:32 Khem Raj
  2016-05-13 16:32 ` [meta-raspberrypi][PATCH 2/2] firmware: Update to "20160512" snapshot Khem Raj
  2016-05-19 15:24 ` [meta-raspberrypi][PATCH 1/2] userland: Update to tip of tree Andrei Gherzan
  0 siblings, 2 replies; 3+ messages in thread
From: Khem Raj @ 2016-05-13 16:32 UTC (permalink / raw)
  To: yocto

Drop the patch which is upstreamed slightly differently
use VMCS_INSTALL_PREFIX to /usr via EXTRA_OECMAKE

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 .../0001-set-VMCS_INSTALL_PREFIX-to-usr.patch      | 28 ----------------------
 recipes-graphics/userland/userland_git.bb          |  6 ++---
 2 files changed, 3 insertions(+), 31 deletions(-)
 delete mode 100644 recipes-graphics/userland/userland/0001-set-VMCS_INSTALL_PREFIX-to-usr.patch

diff --git a/recipes-graphics/userland/userland/0001-set-VMCS_INSTALL_PREFIX-to-usr.patch b/recipes-graphics/userland/userland/0001-set-VMCS_INSTALL_PREFIX-to-usr.patch
deleted file mode 100644
index 5165288..0000000
--- a/recipes-graphics/userland/userland/0001-set-VMCS_INSTALL_PREFIX-to-usr.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From b653ef9e770bd9e4976c058405b94b75873d2508 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Sun, 9 Aug 2015 23:58:17 -0700
-Subject: [PATCH 01/13] set VMCS_INSTALL_PREFIX to /usr
-
-in OE we dont use /opt/vc but standard prefix
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- makefiles/cmake/vmcs.cmake | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/makefiles/cmake/vmcs.cmake b/makefiles/cmake/vmcs.cmake
-index 0f8641b..e9d576d 100644
---- a/makefiles/cmake/vmcs.cmake
-+++ b/makefiles/cmake/vmcs.cmake
-@@ -10,7 +10,7 @@ INCLUDE(CPack)
- if (ANDROID)
-   SET(VMCS_INSTALL_PREFIX "/vendor/brcm/islands" CACHE PATH "Prefix prepended to install directories" FORCE)
- else()
--  SET(VMCS_INSTALL_PREFIX "/opt/vc" CACHE PATH "Prefix prepended to install directories" FORCE)
-+  SET(VMCS_INSTALL_PREFIX "/usr" CACHE PATH "Prefix prepended to install directories" FORCE)
- endif()
- 
- SET(CMAKE_INSTALL_PREFIX "${VMCS_INSTALL_PREFIX}" CACHE INTERNAL "Prefix
--- 
-2.7.4
-
diff --git a/recipes-graphics/userland/userland_git.bb b/recipes-graphics/userland/userland_git.bb
index 0e7057e..7acd8b8 100644
--- a/recipes-graphics/userland/userland_git.bb
+++ b/recipes-graphics/userland/userland_git.bb
@@ -16,11 +16,10 @@ COMPATIBLE_MACHINE = "raspberrypi"
 
 SRCBRANCH = "master"
 SRCFORK = "raspberrypi"
-SRCREV = "703a2c4b35e23ee44ad84db6b9c3f89c0a627143"
+SRCREV = "17c28b9d1d234893b73adeb95efc4959b617fc85"
 
 SRC_URI = "\
     git://github.com/${SRCFORK}/userland.git;protocol=git;branch=${SRCBRANCH} \
-    file://0001-set-VMCS_INSTALL_PREFIX-to-usr.patch \
     file://0002-cmake-generate-and-install-pkgconfig-files.patch \
     file://0003-Allow-applications-to-set-next-resource-handle.patch \
     file://0004-wayland-Add-support-for-the-Wayland-winsys.patch \
@@ -41,7 +40,8 @@ S = "${WORKDIR}/git"
 inherit cmake pkgconfig
 
 EXTRA_OECMAKE = "-DCMAKE_BUILD_TYPE=Release -DCMAKE_EXE_LINKER_FLAGS='-Wl,--no-as-needed' \
-                "
+                 -DVMCS_INSTALL_PREFIX=${exec_prefix} \
+"
 
 PACKAGECONFIG ?= "${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'wayland', '', d)}"
 
-- 
2.8.2



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

* [meta-raspberrypi][PATCH 2/2] firmware: Update to "20160512" snapshot
  2016-05-13 16:32 [meta-raspberrypi][PATCH 1/2] userland: Update to tip of tree Khem Raj
@ 2016-05-13 16:32 ` Khem Raj
  2016-05-19 15:24 ` [meta-raspberrypi][PATCH 1/2] userland: Update to tip of tree Andrei Gherzan
  1 sibling, 0 replies; 3+ messages in thread
From: Khem Raj @ 2016-05-13 16:32 UTC (permalink / raw)
  To: yocto

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 recipes-bsp/common/firmware.inc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes-bsp/common/firmware.inc b/recipes-bsp/common/firmware.inc
index 8f095b9..bf11e4c 100644
--- a/recipes-bsp/common/firmware.inc
+++ b/recipes-bsp/common/firmware.inc
@@ -1,5 +1,5 @@
-RPIFW_SRCREV ?= "c5e131971c323f5658c7c5d4b1dd105d37903a99"
-RPIFW_DATE ?= "20160421"
+RPIFW_SRCREV ?= "3816e1ce1e6ebc6d2bf0596dbd52849e16aa7e94"
+RPIFW_DATE ?= "20160512"
 RPIFW_SRC_URI ?= "git://github.com/raspberrypi/firmware.git;protocol=git;branch=master"
 RPIFW_S ?= "${WORKDIR}/git"
 
-- 
2.8.2



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

* Re: [meta-raspberrypi][PATCH 1/2] userland: Update to tip of tree
  2016-05-13 16:32 [meta-raspberrypi][PATCH 1/2] userland: Update to tip of tree Khem Raj
  2016-05-13 16:32 ` [meta-raspberrypi][PATCH 2/2] firmware: Update to "20160512" snapshot Khem Raj
@ 2016-05-19 15:24 ` Andrei Gherzan
  1 sibling, 0 replies; 3+ messages in thread
From: Andrei Gherzan @ 2016-05-19 15:24 UTC (permalink / raw)
  To: Khem Raj; +Cc: yocto

[-- Attachment #1: Type: text/plain, Size: 271 bytes --]

On Fri, May 13, 2016 at 09:32:32AM -0700, Khem Raj wrote:
> Drop the patch which is upstreamed slightly differently
> use VMCS_INSTALL_PREFIX to /usr via EXTRA_OECMAKE
>
> Signed-off-by: Khem Raj <raj.khem@gmail.com>

Merged to master. Thanks.
--
Andrei Gherzan

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

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

end of thread, other threads:[~2016-05-19 15:24 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-05-13 16:32 [meta-raspberrypi][PATCH 1/2] userland: Update to tip of tree Khem Raj
2016-05-13 16:32 ` [meta-raspberrypi][PATCH 2/2] firmware: Update to "20160512" snapshot Khem Raj
2016-05-19 15:24 ` [meta-raspberrypi][PATCH 1/2] userland: Update to tip of tree Andrei Gherzan

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.