From: Drew Moseley <[email protected]> Add the kernel-image and kernel-devicetree packages to MACHINE_ESSENTIAL_EXTRA_RDEPENDS to ensure they are deployed into the UBI image since that is where UBoot expects to find it.
Signed-off-by: Drew Moseley <[email protected]> --- conf/machine/chip.conf | 3 ++- recipes-core/images/chip-hwup-image.bb | 6 ------ 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/conf/machine/chip.conf b/conf/machine/chip.conf index 0a1f4d4..7624de6 100644 --- a/conf/machine/chip.conf +++ b/conf/machine/chip.conf @@ -2,7 +2,8 @@ #@NAME: C.H.I.P. board #@DESCRIPTION: Machine configuration for C.H.I.P. board -MACHINE_EXTRA_RRECOMMENDS = " kernel-modules kernel-devicetree" +MACHINE_EXTRA_RRECOMMENDS = " kernel-modules" +MACHINE_ESSENTIAL_EXTRA_RDEPENDS = " kernel-image kernel-devicetree" EXTRA_IMAGEDEPENDS += "u-boot" diff --git a/recipes-core/images/chip-hwup-image.bb b/recipes-core/images/chip-hwup-image.bb index 717669c..9742628 100644 --- a/recipes-core/images/chip-hwup-image.bb +++ b/recipes-core/images/chip-hwup-image.bb @@ -1,8 +1,2 @@ # Base this image on core-image-minimal include recipes-core/images/core-image-minimal.bb - -IMAGE_INSTALL += " \ - kernel-image \ - kernel-modules \ - kernel-devicetree \ - " -- 2.7.4 -- _______________________________________________ yocto mailing list [email protected] https://lists.yoctoproject.org/listinfo/yocto
