images: add a client and server image

Signed-off-by: Armin Kuster <akuster808@gmail.com>
This commit is contained in:
Armin Kuster
2016-10-16 00:57:27 -07:00
parent 2431acfc95
commit 9fb87c6c73
2 changed files with 37 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
DESCRIPTION = "A Client side Security example"
IMAGE_INSTALL = "\
packagegroup-base \
packagegroup-core-boot \
os-release \
samhain-client \
${@bb.utils.contains("DISTRO_FEATURES", "x11", "packagegroup-xfce-base", "", d)} \
${ROOTFS_PKGMANAGE_BOOTSTRAP} ${CORE_IMAGE_EXTRA_INSTALL}"
IMAGE_LINGUAS ?= " "
LICENSE = "MIT"
inherit core-image
export IMAGE_BASENAME = "security-client-image"

View File

@@ -0,0 +1,20 @@
DESCRIPTION = "A Serve side image for Security example "
IMAGE_FEATURES += "ssh-server-openssh"
IMAGE_INSTALL = "\
packagegroup-base \
packagegroup-core-boot \
samhain-server \
os-release \
${ROOTFS_PKGMANAGE_BOOTSTRAP} ${CORE_IMAGE_EXTRA_INSTALL}"
IMAGE_LINGUAS ?= " "
LICENSE = "MIT"
inherit core-image
export IMAGE_BASENAME = "security-server-image"
IMAGE_ROOTFS_EXTRA_SPACE = "5242880"