mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-19 12:50:22 +02:00
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:
parent
b24e0b8cda
commit
e319e746bf
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user