Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
SUMMARY ?= "Sample application container"
DESCRIPTION ?= "A small application container which will run \
the application defined in IMAGE_INSTALL."
HOMEPAGE ?= "http://www.windriver.com"

LICENSE ?= "MIT"
LIC_FILES_CHKSUM ?= "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"

Expand All @@ -11,8 +6,6 @@ IMAGE_FSTYPES_remove = "live"

TARGETNAME ?= "c3-app-container"

IMAGE_INSTALL += ""

IMAGE_FEATURES = ""

inherit image
Original file line number Diff line number Diff line change
@@ -1,18 +1,13 @@
SUMMARY ?= "Sample systemd system container"
DESCRIPTION ?= "A small systemd system container which will run \
the application defined in IMAGE_INSTALL."
HOMEPAGE ?= "http://www.windriver.com"

LICENSE ?= "MIT"
LIC_FILES_CHKSUM ?= "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"

IMAGE_FSTYPES ?= "tar.bz2"
IMAGE_FSTYPES_remove = "live"

TARGETNAME ?= "c3-systemd-container"

IMAGE_INSTALL_append += "systemd"

TARGETNAME ?= "c3-systemd-container"

IMAGE_FEATURES = ""

NO_RECOMMENDATIONS = "1"
Expand Down
2 changes: 1 addition & 1 deletion meta-cube/recipes-core/images/c3-app-container_1.0.bb
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ DESCRIPTION = "A small application container which will run \
${C3_APP_CONTAINER_APP}."
HOMEPAGE = "http://www.windriver.com"

require c3-app-container.inc
inherit c3-app-container

IMAGE_INSTALL += "${C3_APP_CONTAINER_APP}"
2 changes: 1 addition & 1 deletion meta-cube/recipes-core/images/c3-systemd-container_1.0.bb
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ SERVICES_TO_DISABLE_append += "${C3_SYSTEMD_CONTAINER_DISABLE_SERVICES}"
# Use local.conf to enable systemd services
SERVICES_TO_ENABLE += "${C3_SYSTEMD_CONTAINER_ENABLE_SERVICES}"

require c3-systemd-container.inc
inherit c3-systemd-container
2 changes: 1 addition & 1 deletion meta-cube/recipes-core/images/cube-vrf_0.1.bb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ routing functions are managed by this container."

HOMEPAGE = "http://www.windriver.com"

require recipes-core/images/c3-app-container.inc
inherit c3-app-container

IMAGE_INSTALL += " \
openvswitch \
Expand Down