diff options
author | Corey Minyard <cminyard@mvista.com> | 2020-04-20 10:17:39 -0700 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2020-04-26 21:48:28 -0400 |
commit | ff5608b874fdd9b4dba3638729d5ae57a2a4d7b9 (patch) | |
tree | fc9064c19fa5aff728e9ce3bc4526922da1d7c70 | |
parent | 5cb80bae0b1373186f2818f168c9da849ec9bcb1 (diff) | |
download | meta-virtualization-ff5608b874fdd9b4dba3638729d5ae57a2a4d7b9.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.inc | 2 |
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() { | |||
47 | do_deploy() { | 47 | do_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 | ||