Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

#!/bin/sh
#
# Make am-utils' aclocal.m4 file (concatendated from others).
# For maintainers only.
# Erez Zadok <ezk AT cs.columbia.edu>

if [ ! -d macros ]; then
	echo no macros directory found!
	exit 2
fi
cd macros
for i in HEADER *.m4; do
	cat $i
	echo
	echo
done
cat TRAILER
exit 0