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

# $FreeBSD$

i=1
r=0
while [ $i -lt $((0x100000000)) ]; do
	t=
	eval t=\${$i-x}
	case $t in
	x) ;;
	*) echo "Problem with \${$i}" >&2; r=1 ;;
	esac
	i=$((i + 0x10000000))
done
exit $r