Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

...

  1. In the Yocto build repository edit the conf/local.conf file and define the SOTA_PACKED_CREDENTIALS option to enable automatic pushing the update packages to the Cloud (use correct path to the credentials.zip archive downloaded in the step above)

    Code Block
    SOTA_PACKED_CREDENTIALS = "/workdir/credentials.zip"
  2. 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 the layers/meta-toradex-torizon/recipes-images/images/torizon-core-common.inc file:

    Code Block
    CORE_IMAGE_BASE_INSTALL:append = " \
         ...
         zram \
         minicom \
     "
  3. Then rebuild the project:

    Code Block
    bitbake torizon-core-docker
  4. When the build completed, goto the Torizon Cloud, select Packages menu, click REFRESH. New package must appear if the My Uploads checkbox is enabled.

...