diff options
author | Naoto Yamaguchi <naoto.yamaguchi@aisin.co.jp> | 2022-07-21 22:33:16 +0900 |
---|---|---|
committer | Naoto Yamaguchi <naoto.yamaguchi@aisin.co.jp> | 2022-07-25 23:10:28 +0900 |
commit | 40f14c6afc686f21cae2e7de264e39670a922eef (patch) | |
tree | cf6cb51b31ee3cac7f8b5b4fdebbf0b688e88932 | |
parent | 2eb95d2e6fc32adf8cba737733c2bdd0342578d5 (diff) |
Force install kernel-image into lxc-host-image-minimal
The AGL IC images use NO_RECOMMENDATIONS, that remove all recommend
packages. Basically it mandatory option for IC EG QM stack.
In Yocto 4.0, kernel image package dependency changed from RDEPEND to
RRECOMMEND. After that, lxc-host-image-xxx is not including kernel image.
This patch fix this issue.
Bug-AGL : SPEC-4464
Signed-off-by: Naoto Yamaguchi <naoto.yamaguchi@aisin.co.jp>
Change-Id: Ie65d5519657e96179d408018e03b6330aad96e3b
-rw-r--r-- | meta-agl-lxc/recipes-platform/images/lxc-host-image-minimal.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta-agl-lxc/recipes-platform/images/lxc-host-image-minimal.bb b/meta-agl-lxc/recipes-platform/images/lxc-host-image-minimal.bb index a8085f42..38fc7b26 100644 --- a/meta-agl-lxc/recipes-platform/images/lxc-host-image-minimal.bb +++ b/meta-agl-lxc/recipes-platform/images/lxc-host-image-minimal.bb @@ -3,6 +3,7 @@ SUMMARY = "A minimal container host image" require recipes-platform/images/agl-image-boot.inc IMAGE_INSTALL += " \ + kernel-image \ lxc \ ${LXC_CONTAINER_CONFIGS} \ drm-lease-manager \ |