XenomaiRuntimePackage - rmu75/linuxcnc-wiki GitHub Wiki
The Xenomai runtime package is needed to build and run the Xenomai kernel, in turn needed by the Xenoma threads versions of LinuxCNC (xenomai-kernel and xenomai-user). See this page for more info: XenomaiKernel
This recipe was developed on Ubuntu Precise, amd64 arch, but will probably work for other versions of Debian-like distros and other arches.
Adjust the following values according to your needs.
# Version of xenomai release to use. Stable versions listed here:
# <http://download.gna.org/xenomai/stable/>
XENO_VERSION=2.6.2.1
# Xenomai package release; this should be bumped with each new package release,
# and reset with each new upstream Xenomai version
XENO_PKG_RELEASE=0
# Your name and email for the changelog
FULLNAME="John Doe"
EMAIL="[email protected]"
This list may be incomplete; git-buildpackage will print a list if more are needed.
# package build prereqs
sudo apt-get install devscripts debhelper dh-kpatches findutils
# unpack the archive
tar xjf xenomai-$XENO_VERSION.tar.bz2 && cd xenomai-$XENO_VERSION
# update changelog
DEBEMAIL="$EMAIL" DEBFULLNAME="$FULLNAME" \
debchange -v $XENO_VERSION-$XENO_PKG_RELEASE Build v$XENO_VERSION
# build the package
dpkg-buildpackage -uc -us
# install resulting packages
cd ..
sudo dpkg -i *.deb
- Xenomai.org instructions for building these packages