linux-yocto-tiny-kexecboot: repair after changes in kernel.bbclass

Add INITRAMFS_TASK to build the cpio on first run and exclude
the packaging tasks to avoid the expected errors about modules_split
and packaging. The recipe doesn't create any package.

Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
This commit is contained in:
Andrea Adami 2013-09-15 18:15:15 +02:00 committed by Paul Eggleton
parent 5e593fa0c7
commit 1de5c36d8b

View File

@ -8,6 +8,8 @@ KERNEL_IMAGE_BASE_NAME = "${KERNEL_IMAGETYPE}-yocto-tiny-kexecboot-${PV}-${PR}-$
KERNEL_IMAGE_SYMLINK_NAME = "${KERNEL_IMAGETYPE}-yocto-tiny-kexecboot-${MACHINE}"
INITRAMFS_IMAGE = "initramfs-kexecboot-klibc-image"
INITRAMFS_TASK = "initramfs-kexecboot-klibc-image:do_rootfs"
do_populate_sysroot() {
:
@ -16,3 +18,9 @@ do_populate_sysroot() {
do_install() {
:
}
do_package() {
}
do_package_ipk() {
}