Install the SDK

Revision as of 15:31, 23 June 2020 by Registered User (Starting up the SDK)


1 Overview[edit]

This stage explains how to install the SDK.
The SDK for OpenSTLinux distribution provides a stand-alone cross-development toolchain and libraries tailored to the contents of the specific image flashed in the board.

2 Host computer configuration[edit]

2.1 Install extra package[edit]

In order to do basic development tasks or basic cross-compilation, some extra Ubuntu packages should be installed:

 sudo apt-get update
 sudo apt-get install sed wget curl cvs subversion git-core coreutils unzip texi2html texinfo docbook-utils gawk python-pysqlite2 diffstat help2man make gcc build-essential g++ desktop-file-utils chrpath libxml2-utils xmlto docbook bsdmainutils iputils-ping cpio python-wand python-pycryptopp python-crypto
 sudo apt-get install libsdl1.2-dev xterm corkscrew nfs-common nfs-kernel-server device-tree-compiler mercurial u-boot-tools libarchive-zip-perl
 sudo apt-get install ncurses-dev bc linux-headers-generic gcc-multilib libncurses5-dev libncursesw5-dev lrzsz dos2unix lib32ncurses5 repo libssl-dev libyaml-dev
 sudo apt-get install default-jre

2.2 Additionnal configurations[edit]

  • Allow up to 16 partitions per mmc

By default, on Linux system, a maximum of 8 partitions are allowed on mmc. All Packages (Starter Package, ...) need more than 10 partitons for the storage device. In order to extend the number of partitions per device to 16, the following options must be added to modprobe:

 echo 'options mmc_block perdev_minors=16' > /tmp/mmc_block.conf
 sudo mv /tmp/mmc_block.conf /etc/modprobe.d/mmc_block.conf

3 Download the SDK[edit]

The software package is provided AS IS, and by downloading it, you agree to be bound to the terms of the software license agreement (SLA0048). The detailed content licenses can be found here.

3.1 For ecosystem release v2.0.0[edit]
  • Download the [unknown revision /unknown revision Developer Package SDK] into the following directory: $HOME/STM32MPU_workspace/tmp
  • Uncompress the tarball file to get the SDK installation script
 cd $HOME/STM32MPU_workspace/tmp
 tar xvf unknown revision 

4 Run the SDK installation script[edit]

4.1 For ecosystem release v2.0.0[edit]
  • Create your STM32MP15 Developer Package SDK directory on your host computer
 mkdir -p $HOME/STM32MPU_workspace/STM32MP15-Ecosystem-v2.0.0/Developer-Package/SDK
  • Change the permissions of the SDK installation script so that it is executable
 chmod +x unknown revision /unknown revision 
  • Execute the SDK installation script
 ./unknown revision /unknown revision  -d <working directory absolute path>/Developer-Package/SDK
  • A successful installation outputs the following log:
ST OpenSTLinux - Weston - (A Yocto Project Based Distro) SDK installer version 3.1-openstlinux-5.4-dunfell-mp1-20-06-24
=======================================================================================================================
You are about to install the SDK to "/home/osboxes/MCD/V2.0/Developper-Package/SDK". Proceed [Y/n]? Y
Extracting SDK................................................................................................................................................................................................................done
Setting it up...done
SDK has been successfully set up and is ready to be used.
Each time you wish to use the SDK in a new shell session, you need to source the environment setup script e.g.
 $ . /<working directory absolute path>/STM32MPU_workspace/STM32MP15-Ecosystem-v2.0.0/Developer-Package/SDK/environment-setup-cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi

5 Starting up the SDK[edit]

Info white.png Information
The SDK environment setup script must be run once in each new working terminal in which you cross-compile

For ecosystem release v2.0.0

 cd $HOME/STM32MPU_workspace/STM32MP15-Ecosystem-v2.0.0/Developer-Package 
 source SDK/environment-setup-cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi

The following checkings allow to ensure that the environment is correctly setup:

  • Check the target architecture
 echo $ARCH
arm
  • Check the toolchain binary prefix for the target tools
 echo $CROSS_COMPILE
arm-ostl-linux-gnueabi- /* For ecosystem release   v2.0.0  */

  • Check the C compiler version
 $CC --version
arm-ostl-linux-gnueabi-gcc (GCC) 9.3.0  /* For ecosystem release   v2.0.0  */
Copyright (C) 2019 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  • Check that the SDK version is the expected one
 echo $OECORE_SDK_VERSION
3.1-openstlinux-5.4-dunfell-mp1-20-06-24 /* For ecosystem release   v2.0.0  */


If any of these commands fails or does not return the expected result, please try to reinstall the SDK.