From 1adf3b7a880f9c40248107a1c3aa80465bf3eb06 Mon Sep 17 00:00:00 2001 From: Thomas Klaehn Date: Thu, 28 Jan 2021 13:42:43 +0100 Subject: [PATCH] images: add podman-host-image --- buildconf/beaglebone-yocto/bblayers.conf.sample | 2 ++ buildconf/qemuarm/bblayers.conf.sample | 2 ++ buildconf/raspberrypi3-64/bblayers.conf.sample | 2 ++ buildconf/raspberrypi4-64/bblayers.conf.sample | 2 ++ recipes-core/images/podman-host-image.bb | 16 ++++++++++++++++ 5 files changed, 24 insertions(+) create mode 100644 recipes-core/images/podman-host-image.bb diff --git a/buildconf/beaglebone-yocto/bblayers.conf.sample b/buildconf/beaglebone-yocto/bblayers.conf.sample index 8870963..b2ab779 100644 --- a/buildconf/beaglebone-yocto/bblayers.conf.sample +++ b/buildconf/beaglebone-yocto/bblayers.conf.sample @@ -15,6 +15,8 @@ BBLAYERS ?= " \ ${TOPDIR}/../layers/meta-openembedded/meta-python \ ${TOPDIR}/../layers/meta-virtualization \ ${TOPDIR}/../layers/meta-raspberrypi \ + ${TOPDIR}/../layers/meta-security \ + ${TOPDIR}/../layers/meta-perl \ ${TOPDIR}/../layers/meta-blackfinn \ " diff --git a/buildconf/qemuarm/bblayers.conf.sample b/buildconf/qemuarm/bblayers.conf.sample index 8870963..b2ab779 100644 --- a/buildconf/qemuarm/bblayers.conf.sample +++ b/buildconf/qemuarm/bblayers.conf.sample @@ -15,6 +15,8 @@ BBLAYERS ?= " \ ${TOPDIR}/../layers/meta-openembedded/meta-python \ ${TOPDIR}/../layers/meta-virtualization \ ${TOPDIR}/../layers/meta-raspberrypi \ + ${TOPDIR}/../layers/meta-security \ + ${TOPDIR}/../layers/meta-perl \ ${TOPDIR}/../layers/meta-blackfinn \ " diff --git a/buildconf/raspberrypi3-64/bblayers.conf.sample b/buildconf/raspberrypi3-64/bblayers.conf.sample index 8c65ece..e20d422 100644 --- a/buildconf/raspberrypi3-64/bblayers.conf.sample +++ b/buildconf/raspberrypi3-64/bblayers.conf.sample @@ -15,5 +15,7 @@ BBLAYERS ?= " \ ${TOPDIR}/../layers/meta-openembedded/meta-python \ ${TOPDIR}/../layers/meta-raspberrypi \ ${TOPDIR}/../layers/meta-virtualization \ + ${TOPDIR}/../layers/meta-security \ + ${TOPDIR}/../layers/meta-perl \ ${TOPDIR}/../layers/meta-blackfinn \ " diff --git a/buildconf/raspberrypi4-64/bblayers.conf.sample b/buildconf/raspberrypi4-64/bblayers.conf.sample index 8c65ece..e20d422 100644 --- a/buildconf/raspberrypi4-64/bblayers.conf.sample +++ b/buildconf/raspberrypi4-64/bblayers.conf.sample @@ -15,5 +15,7 @@ BBLAYERS ?= " \ ${TOPDIR}/../layers/meta-openembedded/meta-python \ ${TOPDIR}/../layers/meta-raspberrypi \ ${TOPDIR}/../layers/meta-virtualization \ + ${TOPDIR}/../layers/meta-security \ + ${TOPDIR}/../layers/meta-perl \ ${TOPDIR}/../layers/meta-blackfinn \ " diff --git a/recipes-core/images/podman-host-image.bb b/recipes-core/images/podman-host-image.bb new file mode 100644 index 0000000..175f6e9 --- /dev/null +++ b/recipes-core/images/podman-host-image.bb @@ -0,0 +1,16 @@ +SUMMARY = "A tiny image" +HOMEPAGE = "https://blackfinn.de" +LICENSE = "MIT" + +require tiny-image-base.inc + +IMAGE_INSTALL_append = " \ + initscripts \ + init-ifupdown \ + podman \ + podman-compose \ + crun \ + cgroup-lite \ +" + +export IMAGE_BASENAME = "podman-host-image"