31 lines
669 B
BlitzBasic
31 lines
669 B
BlitzBasic
SUMMARY = "VRPM Device production image"
|
|
LICENSE = "CLOSED"
|
|
|
|
include ./st-image.inc
|
|
|
|
inherit core-image
|
|
|
|
|
|
IMAGE_INSTALL += " packagegroup-core-boot"
|
|
IMAGE_FEATURES += " \
|
|
debug-tweaks \
|
|
package-management \
|
|
ssh-server-dropbear \
|
|
"
|
|
#
|
|
# INSTALL addons
|
|
#
|
|
CORE_IMAGE_EXTRA_INSTALL += " \
|
|
resize-helper \
|
|
\
|
|
packagegroup-framework-core-base \
|
|
packagegroup-framework-tools-base \
|
|
\
|
|
${@bb.utils.contains('COMBINED_FEATURES', 'optee', 'packagegroup-optee-core', '', d)} \
|
|
${@bb.utils.contains('COMBINED_FEATURES', 'optee', 'packagegroup-optee-test', '', d)} \
|
|
\
|
|
packagegroup-vrpmdv-core \
|
|
packagegroup-vrpmdv-base \
|
|
"
|
|
|