Xenomai on the Beaglebone Black in 14 easy steps ---fwqlzz love is for ever

EDIT: Mark wrote an updated guide here.

The BeagleBone Black is an amazingly cheap and powerful development platform that is being used by many people in a lot of projects. That was intentionally vague, because I know that if you ended up here you already know what a BeagleBone Black is.

In this post I’ll explain how I got Xenomai to run on my BeagleBone.

First of all I tried these instructions, but couldn’t get past the kernel compilation step. I believe that this is due to the instructions being six months old, which are like two and a half centuries in computer time. So I continued searching and found apost in a Japanese blog. Using my fluent Japanese Google Translator I could understand what was going on and could successfully reproduce the steps and get Xenomai up and running (big thanks to the author!). Here I’ll reproduce the steps. I’m assuming that you are on a computer running Ubuntu (like mine) and are familiar with the command line.

Getting the tools

Step 0: Get all the tools that will be needed (cross-compiler and dev libraries).

Building the Kernel

Step 1: First of all, make a directory to hold all of our development files. I’ll call minebbb

Step 2: Get the Linux kernel for the BeagleBone and the Xenomai sources. This might take a while.

Step 3: Checkout kernel 3.8 version branch. Apply BeagleBone’s patches.

Note: In this step I revert to a specific commit because newer ones are known to cause problems.

Step 4: Get a firmware that the kernel config will need (I’m not sure whether this firmware is really needed).

Step 5: Copy the BeagleBone default config as the running config.

Step 6: Apply I-pipe patches to the BeagleBone kernel.

Step 7: Run the Xenomai prepare-kernel  script for the BeagleBone kernel.

Step 8: Configure the kernel to be built.

Under CPUPower Management---> CPU Frequency scaling, disable [] CPUFrequency scaling . (Note: Don’t know if it’s better to leave it enabled, read the comments!)

Under Real-timesub-system ---> Drivers---> Testingdrivers, enable everything.

Step 9: Compile the kernel.

Note: I chose 16 to the -j  option, because my computer has 8 cores. Choose a value appropriate to your computer. I read somewhere that 2 times the number of cores is a good number.

Note: If there were errors in the compilation, the messages will probably be lost among all other output. To see them, simply run the command again.

Preparing an SD Card

Now let’s get an SD Card ready with the Angstrom distribution and our kernel. If you want to use this kernel with the distribution on the eMMC memory, just put it in the appropriate place.

Step 10: Download and copy the default Angstrom distribution to your SD Card. Replace/dev/sdX  with the path to your SD Card. sudofdisk -l  is your friend. Note: I used a SanDisk 4GB SD Card.

CAUTION: YOU WILL LOSE ALL YOUR PREVIOUS DATA ON THE DEVICE /dev/sdX !

Step 11: Mount the Angstrom partition. Copy kernel and kernel modules (thanks for your comment, Jurg Lehni!), Xenomai modules and source folder to that partition. Replace /dev/sdX2  with your actual path to the partition.

Testing

Now put the SD card on the BeagleBone, boot it, ssh into it and test Xenomai.

Step 12: Configure the date and compile Xenomai

Note: an example for the date command would be date-s"21 May 2014 13:25 GMT-3" 

Step 13: Load the testing driver

Step 14: Run some tests!

User-mode latency:

In-kernel Latency:

Poke around:

Change parameters:

Great, huh? Now go develop something real time =)

你可能感兴趣的:(Xenomai on the Beaglebone Black in 14 easy steps ---fwqlzz love is for ever)