diff options
author | Paul Barker <pbarker@toganlabs.com> | 2018-04-16 16:48:12 +0000 |
---|---|---|
committer | Paul Barker <pbarker@toganlabs.com> | 2018-04-20 17:40:24 +0000 |
commit | f10e0fcdf3bfd1c74150669bf50d3d16f64d73f0 (patch) | |
tree | ebe38b3b15b592128c4dd9fb97381391ca96462a | |
parent | 3056eab04859eef87f1dac7c099c860ba2dadbc0 (diff) | |
download | meta-raspberrypi-f10e0fcdf3bfd1c74150669bf50d3d16f64d73f0.tar.gz |
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>
-rw-r--r-- | recipes-bsp/bootfiles/bcm2835-bootfiles.bb | 2 | ||||
-rw-r--r-- | 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 | |||
9 | 9 | ||
10 | INHIBIT_DEFAULT_DEPS = "1" | 10 | INHIBIT_DEFAULT_DEPS = "1" |
11 | 11 | ||
12 | RDEPENDS_${PN} = "rpi-config" | 12 | DEPENDS = "rpi-config" |
13 | 13 | ||
14 | COMPATIBLE_MACHINE = "^rpi$" | 14 | COMPATIBLE_MACHINE = "^rpi$" |
15 | 15 | ||
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 = " \ | |||
4 | file://0002-rpi_0_w-Add-configs-consistent-with-RpI3.patch \ | 4 | file://0002-rpi_0_w-Add-configs-consistent-with-RpI3.patch \ |
5 | " | 5 | " |
6 | 6 | ||
7 | RDEPENDS_${PN}_append_rpi = " rpi-u-boot-scr" | 7 | DEPENDS_append_rpi = " rpi-u-boot-scr" |