All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-virtualization][master,dunfell][PATCH] xen-hypervisor: Check for the right image in uncompressed deploy
@ 2020-04-20 17:17 Jeremy Puhlman
  2020-04-21 20:05 ` Christopher Clark
  2020-04-27  1:48 ` Bruce Ashfield
  0 siblings, 2 replies; 3+ messages in thread
From: Jeremy Puhlman @ 2020-04-20 17:17 UTC (permalink / raw)
  To: meta-virtualization; +Cc: Corey Minyard, Jeremy A . Puhlman

From: Corey Minyard <cminyard@mvista.com>

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>
---
 recipes-extended/xen/xen-hypervisor.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-extended/xen/xen-hypervisor.inc b/recipes-extended/xen/xen-hypervisor.inc
index 21d9c7f..c386917 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
 
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-04-27  1:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-04-20 17:17 [meta-virtualization][master,dunfell][PATCH] xen-hypervisor: Check for the right image in uncompressed deploy Jeremy Puhlman
2020-04-21 20:05 ` Christopher Clark
2020-04-27  1:48 ` Bruce Ashfield

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.