summaryrefslogtreecommitdiffstats
path: root/meta-oe
diff options
context:
space:
mode:
authorKoen Kooi <koen.kooi@linaro.org>2015-09-08 09:24:35 +0200
committerMartin Jansa <Martin.Jansa@gmail.com>2015-09-23 15:34:26 +0200
commit10d09386aa2dfd776c8f985c830b2758212c4629 (patch)
tree7489ac485f0e73b15f830d5d435a47890371ddd8 /meta-oe
parent18225da7505bfc5b43a700706e548bdba54e84bd (diff)
downloadmeta-openembedded-10d09386aa2dfd776c8f985c830b2758212c4629.tar.gz
acpica: update to 20150515 and fix conflicts with other layers
Meta-virtualization and meta-luv both has iasl_*.bb, which is a subset of this recipe. Extend this recipe to provide the native tools and add the necessary runtime conflict options. Also address style issues by moving around a few bits and adding some whitespace. Signed-off-by: Koen Kooi <koen.kooi@linaro.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe')
-rw-r--r--meta-oe/recipes-extended/acpica/acpica_20150515.bb (renamed from meta-oe/recipes-extended/acpica/acpica_20140828.bb)18
1 files changed, 15 insertions, 3 deletions
diff --git a/meta-oe/recipes-extended/acpica/acpica_20140828.bb b/meta-oe/recipes-extended/acpica/acpica_20150515.bb
index fb19c8858..de897e191 100644
--- a/meta-oe/recipes-extended/acpica/acpica_20140828.bb
+++ b/meta-oe/recipes-extended/acpica/acpica_20150515.bb
@@ -5,17 +5,22 @@ Power Interface Specification (ACPI). ACPICA code contains those portions of \
5ACPI meant to be directly integrated into the host OS as a kernel-resident \ 5ACPI meant to be directly integrated into the host OS as a kernel-resident \
6subsystem, and a small set of tools to assist in developing and debugging \ 6subsystem, and a small set of tools to assist in developing and debugging \
7ACPI tables." 7ACPI tables."
8
8HOMEPAGE = "http://www.acpica.org/" 9HOMEPAGE = "http://www.acpica.org/"
9SECTION = "console/tools" 10SECTION = "console/tools"
11
10LICENSE = "BSD | GPLv2" 12LICENSE = "BSD | GPLv2"
11LIC_FILES_CHKSUM = "file://generate/unix/readme.txt;md5=204407e197c1a01154a48f6c6280c3aa" 13LIC_FILES_CHKSUM = "file://generate/unix/readme.txt;md5=204407e197c1a01154a48f6c6280c3aa"
14
15COMPATIBLE_HOST = "(i.86|x86_64|arm|aarch64).*-linux"
16
12DEPENDS = "bison flex" 17DEPENDS = "bison flex"
13 18
14SRC_URI = "https://acpica.org/sites/acpica/files/acpica-unix2-${PV}.tar.gz \ 19SRC_URI = "https://acpica.org/sites/acpica/files/acpica-unix2-${PV}.tar.gz \
15 file://no-werror.patch \ 20 file://no-werror.patch \
16 " 21 "
17SRC_URI[md5sum] = "6f05f0d10166a1b1ff6107f3d1cdf1e5" 22SRC_URI[md5sum] = "2bc4a7ccc82de9df9fa964f784ecb29c"
18SRC_URI[sha256sum] = "01d8867656c5ba41dec307c4383ce676196ad4281ac2c9dec9f5be5fac6d888e" 23SRC_URI[sha256sum] = "61204ec56d71bc9bfa2ee2ade4c66f7e8541772ac72ef8ccc20b3f339cc96374"
19 24
20S = "${WORKDIR}/acpica-unix2-${PV}" 25S = "${WORKDIR}/acpica-unix2-${PV}"
21 26
@@ -31,4 +36,11 @@ do_install() {
31 install -D -p -m0755 generate/unix/bin*/acpixtract ${D}${bindir}/acpixtract 36 install -D -p -m0755 generate/unix/bin*/acpixtract ${D}${bindir}/acpixtract
32} 37}
33 38
34COMPATIBLE_HOST = "(i.86|x86_64|arm|aarch64).*-linux" 39# iasl*.bb is a subset of this recipe, so RREPLACE it
40PROVIDES = "iasl"
41RPROVIDES_${PN} += "iasl"
42RREPLACES_${PN} += "iasl"
43RCONFLIGHTS_${PN} += "iasl"
44
45NATIVE_INSTALL_WORKS = "1"
46BBCLASSEXTEND = "native"