Part Number:AM5728
Tool/software: Linux
Hi Ti engineers,
As we know that the full function rootfs is come form tisdk-rootfs-image.bb. There are some packagegroups appended to IMAGE_INSTALL.
The question does the order in which package groups appear important? And how to deal with the dependency between these packages?
My understand is packagegroup-arago-base must be the fist thing because other packages behind it should be install to packagegroup-arago-base.
Am I right?
# Arago TI SDK full filesystem image
require arago-image.inc
IMAGE_INSTALL += "\
packagegroup-arago-base \
packagegroup-arago-console \
packagegroup-arago-base-tisdk \
packagegroup-arago-test \
packagegroup-arago-test-addons \
${@bb.utils.contains('MACHINE_FEATURES','sgx','packagegroup-arago-tisdk-graphics','',d)} \
packagegroup-arago-tisdk-qte \
${@bb.utils.contains('MACHINE_FEATURES','dsp','packagegroup-arago-tisdk-opencl','',d)} \
${@bb.utils.contains('MACHINE_FEATURES','dsp','packagegroup-arago-tisdk-opencl-extra','',d)} \
packagegroup-arago-tisdk-connectivity \
packagegroup-arago-tisdk-crypto \
packagegroup-arago-tisdk-matrix \
packagegroup-arago-tisdk-multimedia \
packagegroup-arago-tisdk-amsdk \
packagegroup-arago-tisdk-addons \
packagegroup-arago-tisdk-addons-extra \
"
export IMAGE_BASENAME = "tisdk-rootfs-image"