From 92aac385773bf606d1445f3b0bc0aedb23eddcce Mon Sep 17 00:00:00 2001 From: Paul Barker Date: Mon, 16 Apr 2018 16:48:12 +0000 Subject: Don't use RDEPENDS in recipes which don't create packages RDEPENDS is fairly meaningless for recipes which don't create a package to be installed into the rootfs. Instead we should be using DEPENDS to guarantee correct ordering of build tasks. Signed-off-by: Paul Barker --- recipes-bsp/bootfiles/bcm2835-bootfiles.bb | 2 +- recipes-bsp/u-boot/u-boot_%.bbappend | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes-bsp/bootfiles/bcm2835-bootfiles.bb b/recipes-bsp/bootfiles/bcm2835-bootfiles.bb index f9af17b..466f443 100644 --- a/recipes-bsp/bootfiles/bcm2835-bootfiles.bb +++ b/recipes-bsp/bootfiles/bcm2835-bootfiles.bb @@ -9,7 +9,7 @@ include recipes-bsp/common/firmware.inc INHIBIT_DEFAULT_DEPS = "1" -RDEPENDS_${PN} = "rpi-config" +DEPENDS = "rpi-config" COMPATIBLE_MACHINE = "^rpi$" diff --git a/recipes-bsp/u-boot/u-boot_%.bbappend b/recipes-bsp/u-boot/u-boot_%.bbappend index de58f3a..7d4a49e 100644 --- a/recipes-bsp/u-boot/u-boot_%.bbappend +++ b/recipes-bsp/u-boot/u-boot_%.bbappend @@ -4,4 +4,4 @@ SRC_URI_append_rpi = " \ file://0002-rpi_0_w-Add-configs-consistent-with-RpI3.patch \ " -RDEPENDS_${PN}_append_rpi = " rpi-u-boot-scr" +DEPENDS_append_rpi = " rpi-u-boot-scr" -- cgit v1.2.3-54-g00ecf