summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDariusz Pelowski <dariusz.pelowski@gmail.com>2017-10-07 19:52:35 +0200
committerBruce Ashfield <bruce.ashfield@windriver.com>2017-10-09 12:38:08 -0400
commit1f99ba19c8e54b11b77748db890c0b72eae86ba9 (patch)
treeccc4415f49dedd08ce4f260f66684eaa6888faa2
parent4c0363bc9b0393971c01892e68b780a7b009934e (diff)
downloadmeta-virtualization-1f99ba19c8e54b11b77748db890c0b72eae86ba9.tar.gz
xen-image-minimal: corrected popoulation xen.gz for syslinux
syslinux images cannot boot because they're missing of xen.gz file. Current poky doesn't use populate() function, instead syslinux_populate() can be used. Signed-off-by: Dariusz Pelowski <dariusz.pelowski@gmail.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
-rw-r--r--recipes-extended/images/xen-image-minimal.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-extended/images/xen-image-minimal.bb b/recipes-extended/images/xen-image-minimal.bb
index 827cc879..c39d3782 100644
--- a/recipes-extended/images/xen-image-minimal.bb
+++ b/recipes-extended/images/xen-image-minimal.bb
@@ -47,7 +47,7 @@ grubefi_populate_append() {
47 install -m 0644 ${DEPLOY_DIR_IMAGE}/xen-${MACHINE}.gz ${DEST}${EFIDIR}/xen.gz 47 install -m 0644 ${DEPLOY_DIR_IMAGE}/xen-${MACHINE}.gz ${DEST}${EFIDIR}/xen.gz
48} 48}
49 49
50populate_append() { 50syslinux_populate_append() {
51 install -m 0644 ${DEPLOY_DIR_IMAGE}/xen-${MACHINE}.gz ${DEST}/xen.gz 51 install -m 0644 ${DEPLOY_DIR_IMAGE}/xen-${MACHINE}.gz ${DEST}/xen.gz
52} 52}
53 53