VxWorks 7 SDK for QEMU (sabrelite)

Introduction

QEMU (sabrelite) is a 32 bit VxWorks QEMU target based on NXP® i.MX6Q SABRE Lite.

The VxWorks 7 SDK is a development environment dedicated to VxWorks application developers which include the following features:

This guide helps you get up and running with developing applications for platforms running VxWorks. You can use it for creating new applications, or just exploration of VxWorks capabilities.

Setting up the development environment

You should start by downloading a VxWorks SDK for your platform of choice from https://labs.windriver.com and unpacking it. Refer to the documentation in docs in the unpacked SDK for additional information on creating and debugging applications.

OS requirements

The SDKs are meant to run on Linux hosts. Some of the examples in this document are specific to Debian derivatives.

Prerequisite(s)

Host dependencies

On Debian derivatives, the following packages need to be installed:

sudo apt install build-essential libc6:i386

Having an FTP server installed on your development host will make application deployment easier and allow you to access the host file system from a VxWorks target.

To accommodate for the varying runtime configurations of the VxWorks kernel images included in the SDKs, you may be interested in using an FTP server option based on pyftpdlib.

Install pyftpdlib.

sudo apt install python-pip
sudo pip install pyftpdlib

Starting a local FTP server on port 21 with user "target" and password "vxtarget" and FTP root in the current user's home can be done as follows

sudo python -m pyftpdlib -p 21 -u target -P vxTarget -i 127.0.0.1 -d $HOME

Running the VxWorks kernel and the applications created with the SDK requires installing QEMU

sudo apt install qemu-system-arm

Important:

For Ubuntu hosts this PPA (ppa:jacob/virtualisation) includes multiple versions of common virtualization tools, including QEMU.

sudo add-apt-repository ppa:jacob/virtualisation
sudo apt update
sudo apt install qemu-system-arm

Booting VxWorks on QEMU (sabrelite)

QEMU can be used to run the VxWorks kernel included in the SDK and to deploy VxWorks applications.

Start by opening a Linux terminal window and going to the location of your unpacked VxWorks SDK. The following commands can be used to start a VxWorks guest in QEMU.

For host file system access from the VxWorks guest, start an FTP server and enable user "target" with password "vxTarget". These are the built-in credentials for the VxWorks kernel image for QEMU (sabrelite).

sudo python -m pyftpdlib -p 21 -u target -P vxTarget -i 127.0.0.1 -d $HOME &
qemu-system-arm -machine sabrelite -m 1024 -smp 4 -serial /dev/null \
 -serial stdio -kernel wrsdk-vxworks7-qemu-sabrelite/bsps/fsl_imx6_2_0_1_0/boot/vxWorks \
 -net nic,model=imx.enet,netdev=net0 -netdev user,id=net0,hostfwd=tcp:127.0.0.1:1534-:1534 \
 -monitor none -nographic

Application development

Start by opening a Linux terminal window and going to the location of your unpacked VxWorks SDK.

Source the SDK environment file to update your PATH and environmental variables, gaining direct access to the tools included within the SDK.

$ source <SDK_DIR>/toolkit/wind_sdk_env.linux 

Building applications

A "hello world" RTPs example RTP can be built as:

$ $CC hello.c -static -o hello

Running applications on a VxWorks target

After booting VxWorks on your target, switching to the "cmd" shell will allow you to navigate to the location of your application with greater ease.

E.g.

-> cmd
[vxWorks *]# 

Placing the application in a location accessible over FTP will make it visible with minimal configuration to the VxWorks instance.

Assuming the application is located in $HOME/opt and the FTP server uses a minimal configuration which provides FTP access to $HOME:

[vxWorks *]# cd opt
[vxWorks *]# ls
opt/./hello
opt/./hello.c
[vxWorks *]# more hello.c
#include <stdio.h>

int main(int argc, char **argv) {
    printf("Hello World\n");
    return 0;
}
[vxWorks *]# hello
Launching process 'hello' ...
Process 'hello' (process Id = 0x2057f5e8) launched.
Hello World

Refer to the documentation in docs for additional information on creating and debugging applications.

Creating Rust applications

The Rust development environment is set up in a similar manner to the standard application development environment, i.e. by sourcing the SDK environment file.

E.g.

$ source <SDK_DIR>/toolkit/wind_sdk_env.linux 

Building a simple hello world Rust program

$ cargo new hello
$ cd hello
$ cargo build

This will create an RTP called hello.vxe in the directory target/vxworks-target/build-mode where vxworks-target is one of the targets listed below and build-mode is either debug or release.

For example you might see an RTP in the directory: target/armv7-wrs-vxworks-eabihf/debug/hello.vxe

VxWorks Rust targets:

Run the hello.vxe in the VxWorks shell. You will see the following output:

Hello, world!

Note: For more information on using cargo, including how to customize the build output location or change the build mode from debug to release, see the cargo documentation here https://doc.rust-lang.org/cargo/guide/.