diff options
author | Khem Raj <raj.khem@gmail.com> | 2016-03-26 16:59:34 +0000 |
---|---|---|
committer | Andrei Gherzan <andrei@gherzan.ro> | 2016-03-28 16:35:50 +0200 |
commit | 8f285bb8f3fdcb2147310252ff051e70cc7c6276 (patch) | |
tree | e16cf1f70bcb4adcb99e817291da653457324538 /classes | |
parent | 75efa69e757c65b18db81bfd5c6822eb49c58400 (diff) | |
download | meta-raspberrypi-8f285bb8f3fdcb2147310252ff051e70cc7c6276.tar.gz |
sdcard_image: Depend on do_deploy for kernel
SD image is expecting dtb files to be deployed in deploy area, this step
however is done when do_deploy of kernel is finished and we need to pin that in
dependency list, otherwise there are build race conditions during builds
especially visible when building with initramfs enabled.
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'classes')
-rw-r--r-- | classes/sdcard_image-rpi.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/sdcard_image-rpi.bbclass b/classes/sdcard_image-rpi.bbclass index 2e9bdb3..f20ff04 100644 --- a/classes/sdcard_image-rpi.bbclass +++ b/classes/sdcard_image-rpi.bbclass | |||
@@ -53,7 +53,7 @@ IMAGE_DEPENDS_rpi-sdimg = " \ | |||
53 | parted-native \ | 53 | parted-native \ |
54 | mtools-native \ | 54 | mtools-native \ |
55 | dosfstools-native \ | 55 | dosfstools-native \ |
56 | virtual/kernel \ | 56 | virtual/kernel:do_deploy \ |
57 | ${IMAGE_BOOTLOADER} \ | 57 | ${IMAGE_BOOTLOADER} \ |
58 | ${@bb.utils.contains('KERNEL_IMAGETYPE', 'uImage', 'u-boot', '',d)} \ | 58 | ${@bb.utils.contains('KERNEL_IMAGETYPE', 'uImage', 'u-boot', '',d)} \ |
59 | " | 59 | " |