From ff5608b874fdd9b4dba3638729d5ae57a2a4d7b9 Mon Sep 17 00:00:00 2001 From: Corey Minyard Date: Mon, 20 Apr 2020 10:17:39 -0700 Subject: 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 Signed-off-by: Jeremy A. Puhlman Signed-off-by: Bruce Ashfield --- recipes-extended/xen/xen-hypervisor.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'recipes-extended/xen') 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() { do_deploy() { install -d ${DEPLOYDIR} - if [ -f ${B}/xen/xen.gz ]; then + if [ -f ${B}/xen/xen ]; then install -m 0644 ${B}/xen/xen ${DEPLOYDIR}/xen-${MACHINE} fi -- cgit v1.2.3-54-g00ecf