Ubuntu Bionic 18.04.3 LTS for i.MX6/7 boards – August 2019 (kernel 4.14.x)

Published on August 8, 2019

Ubuntu Bionic 18.04.5 LTS - XFCE4 desktop We are glad to offer our new images of Ubuntu Bionic for i.MX6 and i.MX7  Nitrogen boards with the newest 4.14.x_2.0.1 kernel and 4.14.98_2.0.1_ga BSP. These systems contain NXP/Freescale licensed content, so you will need to register on our web-site and log in before you can accept the license agreement and download the images from here:

Update#1 : Update#2: Important ! Before installing this image please check your U-Boot version. The above images require U-Boot version 2018.07  to be used. Make sure to visit our wiki if you need to upgrade: https://boundarydevices.com/wiki/u-boot/ .You can find the bootscript in the /boot subdirectory now, its named boot.scr . The partition labels are set if you use dd or ddrescue to create the disk. If you use your own method please check the boot partition labels, because the fstab boots by label (LABEL=sys-16h for example) now. You can use ext2label to modify partition label.

Programming the image

The image is a slightly-less-than-4GiB image file containing the partition table.  Inspired by ubuntu-mate.org, I changed over from dd to another disk copy program called ddrescue. It is a much more talkative program, although dd does do it's job honestly. I don't like mute programs, you never know whats happening in a given moment. For example, if you want to create an SD card for a console image, you need to do the following : $ sudo apt-get install gddrescue xz-utils util-linux $ gunzip 20190805-nitrogen-4.14.x_2.0.1_ga-bionic-en_US-console_armhf.img.gz $ sudo ddrescue -D --force 20190805-nitrogen-4.14.x_2.0.1_ga-bionic-en_US-console_armhf.img /dev/sdX You have to replace sdX with your actual SDHC reader/writer device. Use the lsblk command to check it. Type lsblk with unplugged SDHC reader, then insert the device, and type lsblk again. A new node will be added , that is your SDHC reader/writer device.

Usernames and passwords

Two users are defined for use on the system: ubuntu and root. The password for each is Boundary (capital B). The user ubuntu has administrator rights, but doesn't need to enter password at sudo command. We wanted to make life easier at the cost of some security. If you want to change this please type: ubuntu@bionic-xfce:~$ sudo visudo , and comment out or delete the last line with "ubuntu" and "NOPASSWD:" An ssh server is configured on the system, though it does not allow password-based authentication for user root. User ubuntu has sudo privileges, so you can place your ssh public key (normally $HOME/.ssh/id_rsa.pub) to the system like so : ubuntu@bionic-xfce:~$ sudo mkdir /root/.ssh ubuntu@bionic-xfce:~$ sudo nano /root/.ssh/authorized_keys ... paste content of $HOME/.ssh/id_rsa.pub here ubuntu@bionic-xfce:~$ sudo chmod 600 /root/.ssh/auth* ubuntu@bionic-xfce:~$ sudo chmod 600 /root/.ssh/

What's supported

Since the images above include our stable 4.14.x kernel, essentially everything is supported including :
  • Vivante GPU accelerations
  • C&M VPU accelerations
  • Wi-Fi and Bluetooth modules for Tiwi-BLE, BD_BCOM, BD-SDMAC
  • All kind of storage devices , SDHC card, eMMC, SATA hdd, USB pen sticks, cell modems
  • All of our supported touch panels
  • IMX Capture devices including OV56xx parallel and mipi cameras, Toshiba BD-HDMI-MIPI converter, UVC cameras
  • It supports i.MX6Q/DL/SX and i.MX7D board's BSP
The packaging (inluding kernel) is done in the normal debian way, so apt-get update/dist-upgrade will keep your image up and running the latest as patches come out.

What's new in this release

  • The Linux kernel was upgraded to 4.14.x ( meta-package name: linux-boundary-17b )
  • GPU driver was upgraded to Vivante 6.2.4p4.0 ( meta-package name: imx-gpu-viv-b16-... ).
  • The module galcore (CONFIG_MXC_GPU_VIV) was removed from the kernel, and it's an externally built module. This change makes the graphics system modular, and more upgradeable, at the price of longer kernel upgrading time. Upgrading kernel takes about 3-4 minutes now, instead of 30 seconds, because every kernel upgrade rebuilds the galcore driver from sources, because its a DKMS module.
  • The package gstreamer-imx was upgraded to 0.13.0-4ubuntu9
  • The NXP/Vivante GPU SDK was added : imx-gpu-sdk 4.0.2 . You can get the source with the usual apt-get source command. This is an SDK with many new demos, for example OpenCL, OpenVG,G2D.
  • The distribution was upgraded to Bionic 18.04.3 LTS . Here are some main component versions :
    • Xorg server 1.19.6
    • gstreamer1.0 1.14.5
    • bluez 5.48-1ubuntu3
    • Qt5 5.9.5
    • apt 1.6.11
    • chromium 76.0.3809.87-0ubuntu0.18.04.1
    • dpkg 1.19.0.5ubuntu2.3
    • gcc/g++ 7.4.0
    • firefox-esr 67.0.4+build1-0ubuntu0.18.04.1
    • libwayland 1.16.0
    • weston 5.0.0-1
    • XFCE Desktop Environment 4.12.3
  • Silex WiFi / Bluetooth is supported also.

Let's see some interesting demos,  this is a screen of the imx-gpu-sdk OpenGLESv2 Blur demo, a spinning bubble with environment mapping: IMX GPU SDK 4.0.2 Gaussian Blur demo You can find many other interesting samples and framework in the SDK, including GLESv2, GLESv3, OpenCL, OpenVG.
This Qt5  Qml demo below shows how to apply various effects on a running video stream, using GPU shaders : Qt5 QMLVideoFX application You can apply various effects on a playing video and/or recording camera screen . Source is available.
H264 file streaming with gstreamer: Playing Warcraft movie trailer

GPU development libraries

The package imx-gpu-viv-b16-dev ( development headers and libraries for OpenGL / ESv2 / ESv3 / Khronos / OpenVG / OpenCL /G2D ) is installed by default. You have to set the headers path, before any other headers, or you might include the mesa headers first, and you don't want to do that. For example : export CFLAGS="-I/usr/include/vivante ${CFLAGS}" and you have to set the library path as well : export LDFLAGS="-L/usr/lib/arm-linux-gnueabihf/vivante ${LDFLAGS}" Alternatively you can use the much more precise pkg-config way, in the makefile. Setting the flags in case of X11 system : PKG_CONFIG_PATH = /usr/lib/arm-linux-gnueabihf/vivante/pkgconfig EGL : CFLAGS += $(shell pkg-config --cflags egl_x11) LDFLAGS += $(shell pkg-config --libs egl_x11) GLESv1 : CFLAGS += $(shell pkg-config --cflags glesv1_cm_x11) LDFLAGS += $(shell pkg-config --libs glesv1_cm_x11) GLESv2 : CFLAGS += $(shell pkg-config --cflags glesv2_x11) LDFLAGS += $(shell pkg-config --libs glesv2_x11) OpenVG : CFLAGS += $(shell pkg-config --cflags vg_x11) LDFLAGS += $(shell pkg-config --libs vg_x11) In case of FB backend change the _x11 postfix above to _fb, thats all. OpenCL is the same at both fb and x11 : CFLAGS += $(shell pkg-config --cflags OpenCL) LDFLAGS += $(shell pkg-config --libs OpenCL) Check the directory /usr/lib/arm-linux-gnueabihf/vivante/pkgconfig for more information
As always, please give us some feedback and let us know how things work for you.