diff options
author | brian avery <brian.avery@intel.com> | 2017-04-12 23:40:56 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-04-13 10:54:10 +0100 |
commit | 0637c5ab2579e03d5e503211b0b9d7e3c11e9af1 (patch) | |
tree | 2568fd0901da1b19093d11b3f290324c49a3c5cd /meta/recipes-devtools/qemu | |
parent | 6cd16dcde44f46c3e3309cb478918d4b77fc045a (diff) | |
download | poky-0637c5ab2579e03d5e503211b0b9d7e3c11e9af1.tar.gz |
qemu-helper-native: prepare native sysroot for runqemu
Make sure that native sysroot contains qemu and tunctl binaries for
runqemu usage:
- excluded native sysroot from rm_work
- added qemu-native to DEPENDS to put qemu binaries into native sysroot
- forced addto_recipe_sysroot task
[YOCTO #11266]
[YOCTO #11193]
(From OE-Core rev: 2e7a155774952705d21109720985f6833fba2669)
Signed-off-by: brian avery <brian.avery@intel.com>
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/qemu')
-rw-r--r-- | meta/recipes-devtools/qemu/qemu-helper-native_1.0.bb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-devtools/qemu/qemu-helper-native_1.0.bb b/meta/recipes-devtools/qemu/qemu-helper-native_1.0.bb index 8d27c4db61..27d53157db 100644 --- a/meta/recipes-devtools/qemu/qemu-helper-native_1.0.bb +++ b/meta/recipes-devtools/qemu/qemu-helper-native_1.0.bb | |||
@@ -19,3 +19,7 @@ do_install() { | |||
19 | install -d ${D}${bindir} | 19 | install -d ${D}${bindir} |
20 | install tunctl ${D}${bindir}/ | 20 | install tunctl ${D}${bindir}/ |
21 | } | 21 | } |
22 | |||
23 | RM_WORK_EXCLUDE_ITEMS += "recipe-sysroot-native" | ||
24 | DEPENDS += "qemu-native" | ||
25 | addtask addto_recipe_sysroot after do_populate_sysroot before do_build | ||