diff options
| author | Khem Raj <raj.khem@gmail.com> | 2016-05-13 09:32:32 -0700 |
|---|---|---|
| committer | Andrei Gherzan <andrei@gherzan.ro> | 2016-05-19 17:14:04 +0200 |
| commit | f7af12910fdacb3f949fd04d9570f66e83cb0efa (patch) | |
| tree | 856c1c80b423c1b513d288b2c734acd2574490a7 | |
| parent | 9912d38e97671704822d1aa05312a0439cb650d3 (diff) | |
| download | meta-raspberrypi-f7af12910fdacb3f949fd04d9570f66e83cb0efa.tar.gz | |
userland: Update to tip of tree
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>
| -rw-r--r-- | recipes-graphics/userland/userland/0001-set-VMCS_INSTALL_PREFIX-to-usr.patch | 28 | ||||
| -rw-r--r-- | recipes-graphics/userland/userland_git.bb | 6 |
2 files changed, 3 insertions, 31 deletions
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 @@ | |||
| 1 | From b653ef9e770bd9e4976c058405b94b75873d2508 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Khem Raj <raj.khem@gmail.com> | ||
| 3 | Date: Sun, 9 Aug 2015 23:58:17 -0700 | ||
| 4 | Subject: [PATCH 01/13] set VMCS_INSTALL_PREFIX to /usr | ||
| 5 | |||
| 6 | in OE we dont use /opt/vc but standard prefix | ||
| 7 | |||
| 8 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 9 | --- | ||
| 10 | makefiles/cmake/vmcs.cmake | 2 +- | ||
| 11 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
| 12 | |||
| 13 | diff --git a/makefiles/cmake/vmcs.cmake b/makefiles/cmake/vmcs.cmake | ||
| 14 | index 0f8641b..e9d576d 100644 | ||
| 15 | --- a/makefiles/cmake/vmcs.cmake | ||
| 16 | +++ b/makefiles/cmake/vmcs.cmake | ||
| 17 | @@ -10,7 +10,7 @@ INCLUDE(CPack) | ||
| 18 | if (ANDROID) | ||
| 19 | SET(VMCS_INSTALL_PREFIX "/vendor/brcm/islands" CACHE PATH "Prefix prepended to install directories" FORCE) | ||
| 20 | else() | ||
| 21 | - SET(VMCS_INSTALL_PREFIX "/opt/vc" CACHE PATH "Prefix prepended to install directories" FORCE) | ||
| 22 | + SET(VMCS_INSTALL_PREFIX "/usr" CACHE PATH "Prefix prepended to install directories" FORCE) | ||
| 23 | endif() | ||
| 24 | |||
| 25 | SET(CMAKE_INSTALL_PREFIX "${VMCS_INSTALL_PREFIX}" CACHE INTERNAL "Prefix | ||
| 26 | -- | ||
| 27 | 2.7.4 | ||
| 28 | |||
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" | |||
| 16 | 16 | ||
| 17 | SRCBRANCH = "master" | 17 | SRCBRANCH = "master" |
| 18 | SRCFORK = "raspberrypi" | 18 | SRCFORK = "raspberrypi" |
| 19 | SRCREV = "703a2c4b35e23ee44ad84db6b9c3f89c0a627143" | 19 | SRCREV = "17c28b9d1d234893b73adeb95efc4959b617fc85" |
| 20 | 20 | ||
| 21 | SRC_URI = "\ | 21 | SRC_URI = "\ |
| 22 | git://github.com/${SRCFORK}/userland.git;protocol=git;branch=${SRCBRANCH} \ | 22 | git://github.com/${SRCFORK}/userland.git;protocol=git;branch=${SRCBRANCH} \ |
| 23 | file://0001-set-VMCS_INSTALL_PREFIX-to-usr.patch \ | ||
| 24 | file://0002-cmake-generate-and-install-pkgconfig-files.patch \ | 23 | file://0002-cmake-generate-and-install-pkgconfig-files.patch \ |
| 25 | file://0003-Allow-applications-to-set-next-resource-handle.patch \ | 24 | file://0003-Allow-applications-to-set-next-resource-handle.patch \ |
| 26 | file://0004-wayland-Add-support-for-the-Wayland-winsys.patch \ | 25 | file://0004-wayland-Add-support-for-the-Wayland-winsys.patch \ |
| @@ -41,7 +40,8 @@ S = "${WORKDIR}/git" | |||
| 41 | inherit cmake pkgconfig | 40 | inherit cmake pkgconfig |
| 42 | 41 | ||
| 43 | EXTRA_OECMAKE = "-DCMAKE_BUILD_TYPE=Release -DCMAKE_EXE_LINKER_FLAGS='-Wl,--no-as-needed' \ | 42 | EXTRA_OECMAKE = "-DCMAKE_BUILD_TYPE=Release -DCMAKE_EXE_LINKER_FLAGS='-Wl,--no-as-needed' \ |
| 44 | " | 43 | -DVMCS_INSTALL_PREFIX=${exec_prefix} \ |
| 44 | " | ||
| 45 | 45 | ||
| 46 | PACKAGECONFIG ?= "${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'wayland', '', d)}" | 46 | PACKAGECONFIG ?= "${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'wayland', '', d)}" |
| 47 | 47 | ||
