diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2017-11-20 20:24:50 +0000 |
---|---|---|
committer | Andrei Gherzan <andrei@gherzan.com> | 2018-07-07 11:28:48 +0100 |
commit | 55aadae7aabe0d10b7a66d174105330bf1f54048 (patch) | |
tree | 226cab035e0c37f280c8d9fcf3d56c91e06af922 | |
parent | 4826d225807850f082d99ba42019023e54215b84 (diff) | |
download | meta-raspberrypi-55aadae7aabe0d10b7a66d174105330bf1f54048.tar.gz |
sdcard_image-rpi: add dependency on rpi-u-boot-scr
* there is runtime dependency on rpi-u-boot-scr from u-boot itself:
recipes-bsp/u-boot/u-boot_%.bbappend:RDEPENDS_${PN}_append_rpi = " rpi-u-boot-scr"
* but that's not enough to ensure that rpi-u-boot-scr:do_deploy is
finished before do_image_rpi_sdimg and for
${DEPLOY_DIR_IMAGE}/boot.scr to exist in time
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | classes/sdcard_image-rpi.bbclass | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/classes/sdcard_image-rpi.bbclass b/classes/sdcard_image-rpi.bbclass index 15c1aac..d6c0bdd 100644 --- a/classes/sdcard_image-rpi.bbclass +++ b/classes/sdcard_image-rpi.bbclass | |||
@@ -56,6 +56,7 @@ do_image_rpi_sdimg[depends] = " \ | |||
56 | virtual/kernel:do_deploy \ | 56 | virtual/kernel:do_deploy \ |
57 | ${IMAGE_BOOTLOADER}:do_deploy \ | 57 | ${IMAGE_BOOTLOADER}:do_deploy \ |
58 | ${@bb.utils.contains('RPI_USE_U_BOOT', '1', 'u-boot:do_deploy', '',d)} \ | 58 | ${@bb.utils.contains('RPI_USE_U_BOOT', '1', 'u-boot:do_deploy', '',d)} \ |
59 | ${@bb.utils.contains('RPI_USE_U_BOOT', '1', 'rpi-u-boot-scr:do_deploy', '',d)} \ | ||
59 | " | 60 | " |
60 | 61 | ||
61 | do_image_rpi_sdimg[recrdeps] = "do_build" | 62 | do_image_rpi_sdimg[recrdeps] = "do_build" |