targets
You can build the CTI on multiple targets. Each supported target has a subdirectory under the targets folder.
Supported targets
The supported targets are listed as subdirectories under the target folder. They include:
- rpi4
- rpi5
To build a target, run make and assign the name of a target's subdirectory to the TARGET variable. For example, to build the rpi4 target, run:
make TARGET=rpi4Customization
You can add a new target by creating a new subdirectory with a unique name and populating the following required files:
- qsc_install_packages.list
Your target requires additional or different packages to be installed into the local or separate installation of the SDP.
- variables.mk
The build process requires variables to be set by each target.
- rule.mk
This file defines makefile targets and rules that are required to build the final makefile target. You must include rules for the makefile target defined by the ALL_TARGET variable in the variables.mk file for the target.
- mkqnximage.config
The configuration file passed to
mkqnximage. Refer to the "Configuration files" section of themkqnximagedocumentation for details.
