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>
This commit is contained in:
Corey Minyard 2020-04-20 10:17:39 -07:00 committed by Bruce Ashfield
parent b24e0b8cda
commit e319e746bf

View File

@ -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