summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Barker <pbarker@toganlabs.com>2018-04-16 16:48:12 +0000
committerPaul Barker <pbarker@toganlabs.com>2018-04-20 17:40:24 +0000
commitf10e0fcdf3bfd1c74150669bf50d3d16f64d73f0 (patch)
treeebe38b3b15b592128c4dd9fb97381391ca96462a
parent3056eab04859eef87f1dac7c099c860ba2dadbc0 (diff)
downloadmeta-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.bb2
-rw-r--r--recipes-bsp/u-boot/u-boot_%.bbappend2
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
10INHIBIT_DEFAULT_DEPS = "1" 10INHIBIT_DEFAULT_DEPS = "1"
11 11
12RDEPENDS_${PN} = "rpi-config" 12DEPENDS = "rpi-config"
13 13
14COMPATIBLE_MACHINE = "^rpi$" 14COMPATIBLE_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
7RDEPENDS_${PN}_append_rpi = " rpi-u-boot-scr" 7DEPENDS_append_rpi = " rpi-u-boot-scr"