diff options
author | Koen Kooi <koen.kooi@linaro.org> | 2015-09-08 09:24:35 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-09-23 15:34:26 +0200 |
commit | 10d09386aa2dfd776c8f985c830b2758212c4629 (patch) | |
tree | 7489ac485f0e73b15f830d5d435a47890371ddd8 /meta-oe/recipes-extended | |
parent | 18225da7505bfc5b43a700706e548bdba54e84bd (diff) | |
download | meta-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/recipes-extended')
-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 fb19c8858a..de897e1917 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 \ | |||
5 | ACPI meant to be directly integrated into the host OS as a kernel-resident \ | 5 | ACPI meant to be directly integrated into the host OS as a kernel-resident \ |
6 | subsystem, and a small set of tools to assist in developing and debugging \ | 6 | subsystem, and a small set of tools to assist in developing and debugging \ |
7 | ACPI tables." | 7 | ACPI tables." |
8 | |||
8 | HOMEPAGE = "http://www.acpica.org/" | 9 | HOMEPAGE = "http://www.acpica.org/" |
9 | SECTION = "console/tools" | 10 | SECTION = "console/tools" |
11 | |||
10 | LICENSE = "BSD | GPLv2" | 12 | LICENSE = "BSD | GPLv2" |
11 | LIC_FILES_CHKSUM = "file://generate/unix/readme.txt;md5=204407e197c1a01154a48f6c6280c3aa" | 13 | LIC_FILES_CHKSUM = "file://generate/unix/readme.txt;md5=204407e197c1a01154a48f6c6280c3aa" |
14 | |||
15 | COMPATIBLE_HOST = "(i.86|x86_64|arm|aarch64).*-linux" | ||
16 | |||
12 | DEPENDS = "bison flex" | 17 | DEPENDS = "bison flex" |
13 | 18 | ||
14 | SRC_URI = "https://acpica.org/sites/acpica/files/acpica-unix2-${PV}.tar.gz \ | 19 | SRC_URI = "https://acpica.org/sites/acpica/files/acpica-unix2-${PV}.tar.gz \ |
15 | file://no-werror.patch \ | 20 | file://no-werror.patch \ |
16 | " | 21 | " |
17 | SRC_URI[md5sum] = "6f05f0d10166a1b1ff6107f3d1cdf1e5" | 22 | SRC_URI[md5sum] = "2bc4a7ccc82de9df9fa964f784ecb29c" |
18 | SRC_URI[sha256sum] = "01d8867656c5ba41dec307c4383ce676196ad4281ac2c9dec9f5be5fac6d888e" | 23 | SRC_URI[sha256sum] = "61204ec56d71bc9bfa2ee2ade4c66f7e8541772ac72ef8ccc20b3f339cc96374" |
19 | 24 | ||
20 | S = "${WORKDIR}/acpica-unix2-${PV}" | 25 | S = "${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 | ||
34 | COMPATIBLE_HOST = "(i.86|x86_64|arm|aarch64).*-linux" | 39 | # iasl*.bb is a subset of this recipe, so RREPLACE it |
40 | PROVIDES = "iasl" | ||
41 | RPROVIDES_${PN} += "iasl" | ||
42 | RREPLACES_${PN} += "iasl" | ||
43 | RCONFLIGHTS_${PN} += "iasl" | ||
44 | |||
45 | NATIVE_INSTALL_WORKS = "1" | ||
46 | BBCLASSEXTEND = "native" | ||