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 <pbarker@toganlabs.com>
This commit is contained in:
Paul Barker 2018-04-16 16:48:12 +00:00 committed by Andrei Gherzan
parent 9b2cbacb07
commit 92aac38577
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ include recipes-bsp/common/firmware.inc
INHIBIT_DEFAULT_DEPS = "1"
RDEPENDS_${PN} = "rpi-config"
DEPENDS = "rpi-config"
COMPATIBLE_MACHINE = "^rpi$"

View File

@ -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"