28 lines
624 B
BlitzBasic
28 lines
624 B
BlitzBasic
SUMMARY = "A minimal ramdisk image."
|
|
MAINTAINER = "Lucien Müller <lucien.mueller@netmodule.com>"
|
|
|
|
COREOS_IMAGE_GENERATE_INSTALLER = "0"
|
|
COREOS_IMAGE_GENERATE_UKI = "0"
|
|
COREOS_IMAGE_GENERATE_SWU = "0"
|
|
|
|
inherit nwl-image
|
|
inherit nwl-image-fitimage
|
|
|
|
# Overwrite definition from nwl-image-fitimage to get rid of default artifacts from
|
|
# coreos like u-boot
|
|
COREOS_CI_DEPLOY_ARTIFACTS = "${@get_nwl_fitimage_ci_artifacts(d)}"
|
|
|
|
IMAGE_FSTYPES = "cpio.xz"
|
|
|
|
# Keep only the minimum packages
|
|
NO_RECOMMENDATIONS = "1"
|
|
|
|
EXTRA_IMAGE_FEATURES = "debug-tweaks ssh-server"
|
|
|
|
IMAGE_INSTALL:append = " \
|
|
nwl-tests \
|
|
\
|
|
bmap-tools \
|
|
xz \
|
|
"
|