mirror of
https://git.yoctoproject.org/meta-arm
synced 2026-07-16 15:57:19 +00:00
24f859cff2
This patch introduces the 'docker' DISTRO_FEATURE do control whether or not to have a minimal docker runtime installed in xenguest images. A new packagegroup and kernel feature were introduced to ensure the minimal kernel config is applied as well as the packages to be installed in the image. Change-Id: Id973ca2421c43d5b0978c6f7311e1d0b4db5edca Issue-Id: SCM-1533 Signed-off-by: Diego Sueiro <diego.sueiro@arm.com> Signed-off-by: Jon Mason <jon.mason@arm.com>
20 lines
431 B
BlitzBasic
20 lines
431 B
BlitzBasic
# SPDX-License-Identifier: MIT
|
|
#
|
|
# Copyright (c) 2020 Arm Limited
|
|
#
|
|
|
|
SUMMARY = "Docker runtime minimal requirements"
|
|
DESCRIPTION = "The minimal set of packages required for running Docker"
|
|
|
|
inherit packagegroup
|
|
|
|
RDEPENDS_${PN} = "\
|
|
docker-ce \
|
|
docker-ce-contrib \
|
|
kernel-module-xt-nat \
|
|
kernel-module-xt-masquerade \
|
|
kernel-module-xt-addrtype \
|
|
kernel-module-xt-conntrack \
|
|
kernel-module-xt-ipvs \
|
|
"
|