summaryrefslogtreecommitdiffstats
path: root/recipes-bsp/bootfiles/bcm2835-bootfiles.bb
diff options
context:
space:
mode:
authorPaul Barker <pbarker@toganlabs.com>2018-04-16 16:48:12 +0000
committerAndrei Gherzan <andrei@gherzan.com>2018-04-23 14:08:04 +0100
commit92aac385773bf606d1445f3b0bc0aedb23eddcce (patch)
treeebe38b3b15b592128c4dd9fb97381391ca96462a /recipes-bsp/bootfiles/bcm2835-bootfiles.bb
parent9b2cbacb074786530c3c7eab70260c8f6de302bf (diff)
downloadmeta-raspberrypi-92aac385773bf606d1445f3b0bc0aedb23eddcce.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>
Diffstat (limited to 'recipes-bsp/bootfiles/bcm2835-bootfiles.bb')
-rw-r--r--recipes-bsp/bootfiles/bcm2835-bootfiles.bb2
1 files changed, 1 insertions, 1 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