diff options
author | Anton Gerasimov <anton@advancedtelematic.com> | 2016-10-19 10:48:21 +0200 |
---|---|---|
committer | Anton Gerasimov <anton@advancedtelematic.com> | 2016-10-19 10:48:21 +0200 |
commit | 4447a0c0916a77349266b44d76aed514577b4ba4 (patch) | |
tree | 096dc8dd795e0e7a94d61c914d3881ba9fcc885b | |
parent | 751edc8fc443bb89e504bf0f87c52826de91beae (diff) | |
download | meta-updater-4447a0c0916a77349266b44d76aed514577b4ba4.tar.gz |
Only build u-boot in otaimg for qemux86, otherwise it should be managed
by live image recipe
Bug-AGL: SPEC-296
Change-Id: Idbb00f33fd04b2a2d9fa8c615347f9b85d917d4a
Signed-off-by: Anton Gerasimov <anton@advancedtelematic.com>
-rw-r--r-- | classes/image_types_ota.bbclass | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/classes/image_types_ota.bbclass b/classes/image_types_ota.bbclass index b9126ec..253d862 100644 --- a/classes/image_types_ota.bbclass +++ b/classes/image_types_ota.bbclass | |||
@@ -9,8 +9,11 @@ | |||
9 | 9 | ||
10 | inherit image | 10 | inherit image |
11 | 11 | ||
12 | IMAGE_DEPENDS_otaimg = "e2fsprogs-native:do_populate_sysroot \ | 12 | IMAGE_DEPENDS_otaimg = "e2fsprogs-native:do_populate_sysroot" |
13 | virtual/bootloader:do_deploy" | 13 | |
14 | # For qemux86 u-boot is not included in any live image and is built separately | ||
15 | IMAGE_DEPENDS_otaimg_append_qemux86 = " virtual/bootloader:do_deploy" | ||
16 | IMAGE_DEPENDS_otaimg_append_qemux86-64 = " virtual/bootloader:do_deploy" | ||
14 | 17 | ||
15 | calculate_size () { | 18 | calculate_size () { |
16 | BASE=$1 | 19 | BASE=$1 |