This packages contains the following elements:
- meta-iot2000-bsp
- meta-iot2000-example
For updates, please visit https://github.com/siemens/meta-iot2000. We are also accepting issue reports, feature suggestions and patches this way.
Use this Yocto layer to enable all hardware features of the IOT2000 device. It allows to build standard Yocto images which will contain the required kernel, configurations and tools and will emit a bootable SD card image.
This Yocto layer builds on top of meta-iot2000-bsp, providing an exemplary image with additional tools and services to exploit features of the IOT2000 conveniently.
This layer shall only be considered as a starting point for own developments. It is not configured to provide product-grade maturity and security.
There are two recommended ways to build one of the provided images, may they be original or already customized: natively on a Linux machine or inside a Docker container.
Note: Before starting the build, make sure that your working directory is located on a native Linux file system such as ext4, xfs, btrfs, etc. NTFS is known to not work.
On a compatible distribution, install the packages that Yocto 3.1 requires.
Furthermore, install the kas build tool:
$ sudo pip3 install kas
Clone the meta-iot2000 repository (or unpack an archive of it) into a work directory:
$ git clone https://github.com/siemens/meta-iot2000
Now you can build the example image like this:
$ kas build meta-iot2000/kas-example.yml
To build the BSP image instead, just specify the corresponding configuration file instead:
$ kas build meta-iot2000/kas-bsp.yml
You can also reproduce the Windows or Linux SDK this way:
$ kas build meta-iot2000/kas-sdk-windows-i586.yml
$ kas build meta-iot2000/kas-sdk-linux-x64.yml
Make sure Docker is installed and properly configured for your host system. You may have to switch the storage driver away from legacy aufs, see Docker documentation, if kas warns about this.
Again, the first step is cloning of the repository (or unpacking an archive):
$ git clone https://github.com/siemens/meta-iot2000
Next, install the kas-container
script like this:
$ wget https://raw.githubusercontent.com/siemens/kas/2.6.2/kas-container
$ chmod a+x kas-container
Now you can generate a desired image. The following assumes that your user has permission to use docker. Usually, this is achieved by adding the user to the docker group (which has security implications). Note that running the build as root does not work.
$ ./kas-container build meta-iot2000/kas-example.yml
The above command disposes the build container after use, keeping downloads and build results in the current work directory.
You may want to use the container interactively:
$ ./kas-container shell meta-iot2000/kas-example.yml
If you are building from within a proxy-restricted network, make sure the
settings are available via the standard environment variables
(http_proxy
etc.).
Under Linux, insert an unused SD card. Assuming the SD card takes device /dev/mmcblk0, use dd to copy the image to it. For example:
$ sudo dd if=build/tmp/deploy/images/iot2000/iot2000-example-image-iot2000.wic \
of=/dev/mmcblk0 bs=4M oflag=sync
The example image starts with the IP 192.168.200.1 preconfigured on the first Ethernet interface. You can use ssh to connect to the system.
The BSP image does not configure the network. If you want to ssh into the system, you can use the root terminal via UART to ifconfig the IP address and use that to ssh in.
NOTE: The root password is empty and must be changed before connecting the system to an untrustworthy network.
Under Linux, insert an unused USB stick. Assuming the USB stick takes device /dev/sda, use dd to copy the image to it. For example:
$ sudo dd if=build/tmp/deploy/images/iot2000/iot2000-example-image-iot2000.wic \
of=/dev/sda bs=4M oflag=sync