Versions Compared

Key

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

...

  1. Install the M7 toolchain.

    1. For Fedora:

      Code Block
      $ sudo dnf install arm-none-eabi-gcc-cs arm-none-eabi-binutils-cs
    2. For Ubuntu:

      Code Block
      $ sudo add-apt-repository ppa:team-gcc-arm-embedded/ppa
      $ sudo apt-get update
      $ sudo apt install gcc-arm-none-eabi binutils
  2. Install the uboot-tools package.

    1. For Fedora:

      Code Block
      $ sudo dnf install uboot-tools
    2. For Ubuntu:

      Code Block
      $ sudo apt install u-boot-tools
  3. Install the openss-devel package.

    1. For Fedora:

      Code Block
      $ sudo dnf install openssl-devel
    2. For Ubuntu:

      Code Block
      $ sudo apt install libssl-dev
  4. Install the stlink package.

    1. For Fedora:

      Code Block
      $ sudo dnf install stlink
    2. For Ubuntu:

      Code Block
      $ sudo apt install stlink

      Please note that the stlink package should be version 1.7.0 or higher. If the new version is not available for your distribution then build it manually from the sources, refer to https://github.com/stlink-org/stlink/blob/develop/doc/compiling.md .

  5. Install the ckermit package.

    1. For Fedora:

      Code Block
      $ sudo dnf install ckermit
    2. For Ubuntu:

      Code Block
      $ sudo apt install ckermit

...