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

#include <stdlib.h>
#include <stdio.h>

int
main (int argc, char **argv)
{
  int *foo = NULL;

  printf ("Oh no, a bug!\n"); /* set breakpoint here */

  return *foo;
}