If you already have a Digi Embedded Yocto version, go to Update Digi Embedded Yocto.

Install Digi Embedded Yocto

If this is the first DEY-2.6 installation, follow these steps:

  1. Install the repo tool.

    To install Digi Embedded Yocto, you need the repo tool. Download repo to a directory within your path and add execution permissions.

    ~> sudo curl -o /usr/local/bin/repo http://commondatastorage.googleapis.com/git-repo-downloads/repo
    ~> sudo chmod a+x /usr/local/bin/repo
  2. Create an installation folder.

    The installation folder requires user write permissions. For example, create the directory /usr/local/dey-2.6, and navigate to that folder.

    ~> sudo install -o <your-user> -g <your-group> -d /usr/local/dey-2.6
    ~> cd /usr/local/dey-2.6

    You can use the id command to get your primary user and group.

  3. Use repo to download Digi Embedded Yocto.

    Install Digi Embedded Yocto from the thud release branch. This allows you to keep up to date with Digi and the Yocto community fixes.

    ~> repo init -u https://github.com/digi-embedded/dey-manifest.git -b thud
    ~> repo sync -j8 --no-repo-verify

Update Digi Embedded Yocto

The Digi Embedded Yocto update process is different depending on your current Digi Embedded Yocto version.

Update an existing DEY-2.6 installation

To update a previous DEY-2.6 release, sync your installation with the HEAD of the release branch:

~> repo init -b thud
~> repo sync -j8 --no-repo-verify

Update an existing installation older than DEY-2.6

If you are updating from a previous major release, you must install the new Digi Embedded Yocto release in a new directory. Follow the steps in Install Digi Embedded Yocto to download the new version.

You must recreate older projects for Digi Embedded Yocto 2.6.

Get update notifications

You can subscribe to the dey-manifest repository in github to be informed about Digi Embedded Yocto updates.

New Digi Embedded Yocto releases may include things like:

  • Software features

  • Bug fixes

  • Security fixes

  • Updates to machine layers and BSPs

Digi Embedded Yocto updates to a new Yocto Project release every year, updating all user space package versions.

Release notes

Digi Embedded Yocto release notes and changelog are bundled in the README included with the meta-digi layer.