diff options
author | Joshua Lock <joshua.g.lock@intel.com> | 2016-09-18 00:39:26 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-09-20 15:11:07 +0100 |
commit | 52e04cd88b043f2ce858426815f595acf1b8a713 (patch) | |
tree | 0d834a3afc31c9f2bd6f0b7aef566abd06364deb /meta/classes/qemuboot.bbclass | |
parent | 0fd72474e7214994ead982742895e871c9dd92e3 (diff) | |
download | poky-52e04cd88b043f2ce858426815f595acf1b8a713.tar.gz |
qemuboot: also write the kernel link name to the conf file
This will allow runqemu to fall back to trying the link name when
a file matching the full name can't be found.
(From OE-Core rev: 3ccbaaad75f0a53d8bcf6a5c748ec80c96a383bd)
Signed-off-by: Joshua Lock <joshua.g.lock@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/qemuboot.bbclass')
-rw-r--r-- | meta/classes/qemuboot.bbclass | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/classes/qemuboot.bbclass b/meta/classes/qemuboot.bbclass index 0892db3f3a..802eb59f71 100644 --- a/meta/classes/qemuboot.bbclass +++ b/meta/classes/qemuboot.bbclass | |||
@@ -48,8 +48,9 @@ python write_qemuboot_conf() { | |||
48 | import configparser | 48 | import configparser |
49 | 49 | ||
50 | build_vars = ['MACHINE', 'TUNE_ARCH', 'DEPLOY_DIR_IMAGE', \ | 50 | build_vars = ['MACHINE', 'TUNE_ARCH', 'DEPLOY_DIR_IMAGE', \ |
51 | 'IMAGE_NAME', 'IMAGE_LINK_NAME', 'STAGING_DIR_NATIVE', \ | 51 | 'KERNEL_IMAGETYPE', 'IMAGE_NAME', 'IMAGE_LINK_NAME', \ |
52 | 'STAGING_BINDIR_NATIVE', 'STAGING_DIR_HOST'] | 52 | 'STAGING_DIR_NATIVE', 'STAGING_BINDIR_NATIVE', \ |
53 | 'STAGING_DIR_HOST'] | ||
53 | 54 | ||
54 | # Vars from bsp | 55 | # Vars from bsp |
55 | qb_vars = [] | 56 | qb_vars = [] |