This Isar layer contains recipes, configuration and other artifacts that are specific to Debian-based IOT2050 product.
Before building the system, you will need to install docker on build host. For example under Debian Linux
sudo apt install docker.io
Then open the menu to select the desired image and options:
./kas-container menu
After the build completed, the final image is under
build/tmp/deploy/images/iot2050/iot2050-image-example-iot2050-debian-iot2050.wic.img
Note: Current SDK only supports Linux x86-64 host machine
./kas-container build kas-iot2050-example.yml:kas/opt/sdk.yml
(or select SDK in kas menu
)
After the build completed, the SDK tarball is located at
build/tmp/deploy/images/iot2050/sdk-isar-arm64.tar.xz
Please follow the further instruction file README.sdk
in the SDK tarball.
The SDK is also available as docker image. To import it into a docker host, run
docker load -i build/tmp/deploy/images/iot2050/sdk-iot2050-debian-arm64-docker-archive.tar.xz
./kas-container --isar clean
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/iot2050/iot2050-image-example-iot2050-debian-iot2050.wic.img \
of=/dev/mmcblk0 bs=4M oflag=sync
Alternatively, install the bmap-tools package and run the following command which is generally faster and safer:
$ sudo bmaptool copy build/tmp/deploy/images/iot2050/iot2050-image-example-iot2050-debian-iot2050.wic.img /dev/mmcblk0
The example image starts with the IP 192.168.200.1 preconfigured on the first Ethernet interface, and use DHCP at another. 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: To login, the default username and password is root
.
And you are required to change the default password when first login.
During the very first boot of the image from an SD card or USB stick, you can request the installation to the eMMC. For that, press the USER button while the status LED is blinking orange during that first boot. Hold the button for at least 5 seconds to start the installation.
NOTE: All content of the eMMC will be overwritten by this procedure!
The ongoing installation is signaled by a fast blinking status LED. Wait for several minutes until the LED stops blinking and the device reboots to the eMMC. You can safely remove the SD card or USB stick at that point.
The installation can also be triggered automatically by creating the file
/etc/install-on-emmc
on the vanilla image by mounting it under Linux and
executing, e.g., touch <mountpoint>/etc/install-on-emmc
.
By default, the boot loader will pick the first bootable device. If that device may no longer fully start, you can select an alternative boot device in the U-Boot shell. Attach a USB-UART adapter to X14, connect it to a host PC and open a terminal program on that port. Reset the device and interrupt the boot when it counts down ("Hit any key to stop autoboot"). Then type
=> setenv boot_targets mmc0
=> run distro_bootcmd
to boot from the microSD card. Use usb0
for the first USB mass storage
device.
NOTE: This selection is not persistent. The boot loader will fall back to its default boot order after reset.