summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--classes/container-host.bbclass15
1 files changed, 15 insertions, 0 deletions
diff --git a/classes/container-host.bbclass b/classes/container-host.bbclass
new file mode 100644
index 00000000..99a75fea
--- /dev/null
+++ b/classes/container-host.bbclass
@@ -0,0 +1,15 @@
1# This class is the collection point for automatic dependencies,
2# package installs, rootfs postprocessing, etc, that are used
3# by container host images and recipes.
4
5# It currently is largely empty, and simply adds RDEPENDS, but
6# will expand to CRI/CNI configurations in the future.
7#
8
9RDEPENDS:${PN}:append = " container-host-config"
10
11do_install:append() {
12 # placeholder for additional package install, or configuration
13 # of the rootfs
14 true
15}