aboutsummaryrefslogtreecommitdiffstats
path: root/classes/container-host.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'classes/container-host.bbclass')
-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 @@
+# This class is the collection point for automatic dependencies,
+# package installs, rootfs postprocessing, etc, that are used
+# by container host images and recipes.
+
+# It currently is largely empty, and simply adds RDEPENDS, but
+# will expand to CRI/CNI configurations in the future.
+#
+
+RDEPENDS:${PN}:append = " container-host-config"
+
+do_install:append() {
+ # placeholder for additional package install, or configuration
+ # of the rootfs
+ true
+}