diff options
author | Paul Barker <pbarker@toganlabs.com> | 2018-04-16 16:48:12 +0000 |
---|---|---|
committer | Andrei Gherzan <andrei@gherzan.com> | 2018-04-23 14:08:04 +0100 |
commit | 92aac385773bf606d1445f3b0bc0aedb23eddcce (patch) | |
tree | ebe38b3b15b592128c4dd9fb97381391ca96462a /recipes-bsp/bootfiles/bcm2835-bootfiles.bb | |
parent | 9b2cbacb074786530c3c7eab70260c8f6de302bf (diff) | |
download | meta-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.bb | 2 |
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 | ||
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 | ||