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$
f()
{
	false
	case $1 in
	foo) true ;;
	bar) false ;;
	esac
}

f foo || exit 1
f bar && exit 1
f quux || exit 1