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

1
2
3
4
5
6
dnl find bison/yacc, but error if none found
AC_DEFUN([AMU_PROG_YACC],
[AC_CHECK_PROGS(YACC, 'bison -y' byacc yacc, :)
if test "x$YACC" = "x:"; then
  AC_MSG_ERROR([cannot find bison/yacc/byacc -- needed for am-utils])
fi])