From 21a22cadf07c8a42a20a7765bcf05bc1aaf2273a Mon Sep 17 00:00:00 2001 From: Scott Murray Date: Thu, 23 May 2024 07:37:25 -0400 Subject: Update recipes for transition to UNPACKDIR Update recipes to handle the transition to using UNPACKDIR as the destination for unpacked files. For recipes that had been using S = WORKDIR, the approach used in meta-openembedded has been followed, i.e. using UNPACKDIR in tasks for consistency. Bug-AGL: SPEC-5147 Change-Id: I32e277e15e5aa1ac93dadc67199dedd148d3d0b9 Signed-off-by: Scott Murray --- .../create-combined-dtb/create-combined-dtb_1.0.0.bb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'meta-agl-bsp/meta-raspberrypi') diff --git a/meta-agl-bsp/meta-raspberrypi/recipes-kernel/create-combined-dtb/create-combined-dtb_1.0.0.bb b/meta-agl-bsp/meta-raspberrypi/recipes-kernel/create-combined-dtb/create-combined-dtb_1.0.0.bb index c5edbe1dc..464ae3f6f 100644 --- a/meta-agl-bsp/meta-raspberrypi/recipes-kernel/create-combined-dtb/create-combined-dtb_1.0.0.bb +++ b/meta-agl-bsp/meta-raspberrypi/recipes-kernel/create-combined-dtb/create-combined-dtb_1.0.0.bb @@ -1,16 +1,13 @@ SUMMARY = "Combine dtb and dtbo" DESCRIPTION = "Combine specified dtb and one or more dtbo into specified filename found in deploydir" SECTION = "bootloader" -PR = "r1" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" DEPENDS = "dtc-native" -ALLOW_EMPTY:${PN} = "1" -FILES:${PN} = "" - -S = "${WORKDIR}" +S = "${WORKDIR}/sources" +UNPACKDIR = "${S}" do_compile[depends] += "virtual/kernel:do_deploy" @@ -41,3 +38,6 @@ do_deploy () { } addtask deploy after do_install + +ALLOW_EMPTY:${PN} = "1" +FILES:${PN} = "" -- cgit 1.2.3-korg