summaryrefslogtreecommitdiffstats
path: root/meta/classes/image_types.bbclass
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2019-02-27 18:47:31 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-02-28 13:21:54 +0000
commit48522906a261f9a552f13b146aa7f3691be37002 (patch)
treea40226291f277540547ebd1c637de5d203cd2378 /meta/classes/image_types.bbclass
parent80d29f1cb1e077cc457a6917fa57561a88921fca (diff)
downloadpoky-48522906a261f9a552f13b146aa7f3691be37002.tar.gz
qemu: split the native version into usermode and system parts
The rationale is to streamline the overall build. The system parts are only needed to run target images, and so can be built towards the end of the build process. At the same time, the system parts may need gtk+-native and mesa-native which add significantly to the build time. On the other hand, the usermode parts have almost no dependencies and can be built quickly. They are needed at recipes build time to run target binaries, and so are required quite early in the typical build process. (From OE-Core rev: 4a558a5f2db68538e0edad798ddf48eb9510a7d6) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/image_types.bbclass')
-rw-r--r--meta/classes/image_types.bbclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/classes/image_types.bbclass b/meta/classes/image_types.bbclass
index 6b9407e78b..f363c42ee5 100644
--- a/meta/classes/image_types.bbclass
+++ b/meta/classes/image_types.bbclass
@@ -310,9 +310,9 @@ CONVERSION_DEPENDS_zip = "zip-native"
310CONVERSION_DEPENDS_sum = "mtd-utils-native" 310CONVERSION_DEPENDS_sum = "mtd-utils-native"
311CONVERSION_DEPENDS_bmap = "bmap-tools-native" 311CONVERSION_DEPENDS_bmap = "bmap-tools-native"
312CONVERSION_DEPENDS_u-boot = "u-boot-tools-native" 312CONVERSION_DEPENDS_u-boot = "u-boot-tools-native"
313CONVERSION_DEPENDS_vmdk = "qemu-native" 313CONVERSION_DEPENDS_vmdk = "qemu-system-native"
314CONVERSION_DEPENDS_vdi = "qemu-native" 314CONVERSION_DEPENDS_vdi = "qemu-system-native"
315CONVERSION_DEPENDS_qcow2 = "qemu-native" 315CONVERSION_DEPENDS_qcow2 = "qemu-system-native"
316CONVERSION_DEPENDS_base64 = "coreutils-native" 316CONVERSION_DEPENDS_base64 = "coreutils-native"
317 317
318RUNNABLE_IMAGE_TYPES ?= "ext2 ext3 ext4" 318RUNNABLE_IMAGE_TYPES ?= "ext2 ext3 ext4"