summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCorey Minyard <cminyard@mvista.com>2020-04-20 10:17:39 -0700
committerBruce Ashfield <bruce.ashfield@gmail.com>2020-04-26 21:48:34 -0400
commite319e746bffc4360229b2c926b8c5c9492ee52a7 (patch)
tree877926f7dfd52c0e165e735a6c3b59ab8161b979
parentb24e0b8cdac6c86d1d2e96a3c5dd9901cf2412cc (diff)
downloadmeta-virtualization-e319e746bffc4360229b2c926b8c5c9492ee52a7.tar.gz
xen-hypervisor: Check for the right image in uncompressed deploy
The deploy for the uncompressed image was checking if a .gz file exists, it should instead check for a straight xen file. Signed-off-by: Corey Minyard <cminyard@mvista.com> Signed-off-by: Jeremy A. Puhlman <jpuhlman@mvista.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r--recipes-extended/xen/xen-hypervisor.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-extended/xen/xen-hypervisor.inc b/recipes-extended/xen/xen-hypervisor.inc
index 21d9c7ff..c386917d 100644
--- a/recipes-extended/xen/xen-hypervisor.inc
+++ b/recipes-extended/xen/xen-hypervisor.inc
@@ -47,7 +47,7 @@ do_install() {
47do_deploy() { 47do_deploy() {
48 install -d ${DEPLOYDIR} 48 install -d ${DEPLOYDIR}
49 49
50 if [ -f ${B}/xen/xen.gz ]; then 50 if [ -f ${B}/xen/xen ]; then
51 install -m 0644 ${B}/xen/xen ${DEPLOYDIR}/xen-${MACHINE} 51 install -m 0644 ${B}/xen/xen ${DEPLOYDIR}/xen-${MACHINE}
52 fi 52 fi
53 53