...
The STM32MP2-EV1 board with installed TorizonOS (refer to STM32MP2 EV1: Installation the Installing TorizonOS to eMMC Using the STM32 Programmer Tool on how to basically install the TorizonOS;
Registered account in the Torizon Cloud.
...
In the Yocto build repository edit the
conf/local.conf
file and define theSOTA_PACKED_CREDENTIALS
option to enable automatic pushing the update packages to the Cloud (use correct path to thecredentials.zip
archive downloaded in the step above)Code Block SOTA_PACKED_CREDENTIALS = "/workdir/credentials.zip"
Make some changes in the projects recipes, for example add
minicom
to the file system image, by adding it toCORE_IMAGE_BASE_INSTALL:append
in thelayers/meta-toradex-torizon/recipes-images/images/torizon-core-common.inc
file:Code Block CORE_IMAGE_BASE_INSTALL:append = " \ ... zram \ minicom \ "
Then rebuild the project:
Code Block bitbake torizon-core-docker
When the build completed, goto the Torizon Cloud, select
Packages
menu, clickREFRESH
. New package must appear if theMy Uploads
checkbox is enabled.
...