Free Electrons, a technology company offering embedded Linux consulting services as well as embedded Linux training, has released their training materials for Linux and system development for embedded systems including their Lab sessions. The training materials are available in their git repository in LaTeX format. If you want the latest documentation in PDF, you’ll need to build it by following those steps: Install the required packages:
1 |
sudo apt-get install git dia inkscape texlive-full python-pygments |
Get the embedded Linux slides source:
1 |
git clone <a href="git://git.free-electrons.com/training-materials.git">git://git.free-electrons.com/training-materials.git</a> |
Build the training materials:
1 2 3 4 |
cd training-materials make full-sysdev-labs.pdf make full-kernel-labs.pdf make full-sysdev-slides.pdf |
The last three commands will generate the PDF files respectively: full-sysdev-labs.pdf – Embedded Linux Training Lab Book (58 pages) with instructions for the IGEPv2 board based on on TI DM3730 or OMAP3530. full-kernel-labs.pdf – Linux kernel and driver development training Lab Book (37 pages) full-sysdev-slides.pdf – Embedded Linux system development presentation slides (506 pages) Free Electrons also have slightly older version of full-kernel-labs.pdf and full-sysdev-slides.pdf available for download as PDF so […]