Fix recipe to be OE complient with spacing SRCREV and PV.
Signed-off-by: Graeme Gregory graeme.gregory@linaro.org --- meta-aarch64/conf/machine/genericarmv8.conf | 8 ++++---- meta-linaro/recipes-extra/acpica/acpica_20130626.bb | 18 +++++++++--------- 2 files changed, 13 insertions(+), 13 deletions(-)
diff --git a/meta-aarch64/conf/machine/genericarmv8.conf b/meta-aarch64/conf/machine/genericarmv8.conf index 6d84e0d..ab8900e 100644 --- a/meta-aarch64/conf/machine/genericarmv8.conf +++ b/meta-aarch64/conf/machine/genericarmv8.conf @@ -23,15 +23,15 @@ PREFERRED_PROVIDER_virtual/kernel ?= "linux-linaro" KERNEL_IMAGETYPE = "Image"
# We have to disable SERIAL_CONSOLE due to auto-serial-console -#SERIAL_CONSOLE = "115200 ttyAMA0" +SERIAL_CONSOLE = "115200 ttyAMA0"
# Force auto-serial-console to be used by all image types # Ideally this would be part of core oe or as a bbclassappend, # but as we don't have an easy way to append a class, defining # it here -EXTRA_IMAGE_FEATURES += "autoserial" -PACKAGE_GROUP_autoserial = "auto-serial-console" +#EXTRA_IMAGE_FEATURES += "autoserial" +#PACKAGE_GROUP_autoserial = "auto-serial-console"
# we do not want to have getty running on tty1 as we run # auto-serial-console there -USE_VT = "0" +#USE_VT = "0" diff --git a/meta-linaro/recipes-extra/acpica/acpica_20130626.bb b/meta-linaro/recipes-extra/acpica/acpica_20130626.bb index 58d7c4b..e4218fd 100644 --- a/meta-linaro/recipes-extra/acpica/acpica_20130626.bb +++ b/meta-linaro/recipes-extra/acpica/acpica_20130626.bb @@ -1,21 +1,20 @@ +SUMMARY = "ACPICA tools for the development and debug of ACPI tables" DESCRIPTION = "The ACPI Component Architecture (ACPICA) project provides an \ OS-independent reference implementation of the Advanced Configuration and \ Power Interface Specification (ACPI). ACPICA code contains those portions of \ ACPI meant to be directly integrated into the host OS as a kernel-resident \ subsystem, and a small set of tools to assist in developing and debugging \ ACPI tables." -SUMMARY = "ACPICA tools for the development and debug of ACPI tables" HOMEPAGE = "http://www.acpica.org/" SECTION = "console/tools" LICENSE = "BSD | GPLv2" LIC_FILES_CHKSUM = "file://generate/unix/readme.txt;md5=204407e197c1a01154a48f6c6280c3aa" -DEPENDS="bison \ - flex" -COMPATIBLE_HOST = "(i.86|x86_64|arm|aarch64).*-linux" - -PR="r2" +DEPENDS = "bison flex" +SRCREV = "780de9ee36e5a7b4acc29a2ccd43d6bdc5dd5219" +PV = "20130626+git${SRCPV}" +PR = "r3"
-SRC_URI="git://git.linaro.org/people/ahs3/acpica-tools.git \ +SRC_URI = "git://git.linaro.org/people/ahs3/acpica-tools.git \ file://fix_ftbfs_debian-kfreebsd.patch \ file://debian-big_endian.patch \ file://debian-unaligned.patch \ @@ -27,8 +26,6 @@ SRC_URI="git://git.linaro.org/people/ahs3/acpica-tools.git \ file://no-werror.patch \ file://fix-parallel-build.patch"
-SRCREV = "${AUTOREV}" - S = "${WORKDIR}/git"
EXTRA_OEMAKE = "'OPT_CFLAGS=-Wall'" @@ -42,3 +39,6 @@ do_install() { install -D -p -m0755 generate/unix/bin*/acpisrc ${D}${bindir}/acpisrc install -D -p -m0755 generate/unix/bin*/acpixtract ${D}${bindir}/acpixtract } + +COMPATIBLE_HOST = "(i.86|x86_64|arm|aarch64).*-linux" +