diff options
Diffstat (limited to 'meta/classes/live-vm-common.bbclass')
-rw-r--r-- | meta/classes/live-vm-common.bbclass | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/meta/classes/live-vm-common.bbclass b/meta/classes/live-vm-common.bbclass index c751385e7d..734697f9e6 100644 --- a/meta/classes/live-vm-common.bbclass +++ b/meta/classes/live-vm-common.bbclass | |||
@@ -31,14 +31,18 @@ inherit ${EFI_CLASS} | |||
31 | inherit ${PCBIOS_CLASS} | 31 | inherit ${PCBIOS_CLASS} |
32 | 32 | ||
33 | KERNEL_IMAGETYPE ??= "bzImage" | 33 | KERNEL_IMAGETYPE ??= "bzImage" |
34 | VM_DEFAULT_KERNEL ??= "${KERNEL_IMAGETYPE}" | ||
34 | 35 | ||
35 | populate_kernel() { | 36 | populate_kernel() { |
36 | dest=$1 | 37 | dest=$1 |
37 | install -d $dest | 38 | install -d $dest |
38 | 39 | ||
39 | # Install bzImage, initrd, and rootfs.img in DEST for all loaders to use. | 40 | # Install bzImage, initrd, and rootfs.img in DEST for all loaders to use. |
40 | if [ -e ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGETYPE} ]; then | 41 | bbnote "Trying to install ${DEPLOY_DIR_IMAGE}/${VM_DEFAULT_KERNEL} as $dest/vmlinuz" |
41 | install -m 0644 ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGETYPE} $dest/vmlinuz | 42 | if [ -e ${DEPLOY_DIR_IMAGE}/${VM_DEFAULT_KERNEL} ]; then |
43 | install -m 0644 ${DEPLOY_DIR_IMAGE}/${VM_DEFAULT_KERNEL} $dest/vmlinuz | ||
44 | else | ||
45 | bbwarn "${DEPLOY_DIR_IMAGE}/${VM_DEFAULT_KERNEL} doesn't exist" | ||
42 | fi | 46 | fi |
43 | 47 | ||
44 | # initrd is made of concatenation of multiple filesystem images | 48 | # initrd is made of concatenation of multiple filesystem images |