1
0
mirror of https://git.yoctoproject.org/meta-arm synced 2026-05-09 05:30:05 +00:00

arm-autonomy: Don't include kernels in arm-autonomy-host images

To reduce arm-autonomy-host images size we don't include the Kernel
image.

Change-Id: Ibcadf873fc71f3793b2824e5169a777ee8a0ece6
Issue-Id: SCM-813
Signed-off-by: Diego Sueiro <diego.sueiro@arm.com>
Reviewed-by: Bertrand Marquis <bertrand.marquis@arm.com>
Signed-off-by: Jon Mason <jon.mason@arm.com>
This commit is contained in:
Diego Sueiro
2020-05-07 12:08:23 +01:00
committed by Jon Mason
parent 0bd69e03df
commit e6029ccf12
2 changed files with 5 additions and 0 deletions
+1
View File
@@ -25,6 +25,7 @@ This layer is adding the following Yocto DISTRO_FEATURES:
an autonomy host system. It is doing the following: an autonomy host system. It is doing the following:
- add 'xen' and 'ipv4' to DISTRO_FEATURES. - add 'xen' and 'ipv4' to DISTRO_FEATURES.
- add xen backend drivers to linux kernel configuration. - add xen backend drivers to linux kernel configuration.
- To reduce the root filesystem image size the kernel image is not installed.
* arm-autonomy-guest: this feature activates functionalities to run as guest * arm-autonomy-guest: this feature activates functionalities to run as guest
of an autonomy system. It is doing the following: of an autonomy system. It is doing the following:
@@ -3,3 +3,7 @@
# We need to have xen and ipv4 activated # We need to have xen and ipv4 activated
DISTRO_FEATURES_append = " xen ipv4" DISTRO_FEATURES_append = " xen ipv4"
# Don't include kernels in standard images when building arm-autonomy-host
# If the kernel image is needed in the rootfs the following should be set from
# a bbappend: RDEPENDS_${KERNEL_PACKAGE_NAME}-base = "${KERNEL_PACKAGE_NAME}-image"
RDEPENDS_${KERNEL_PACKAGE_NAME}-base ?= ""