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 foo = -1;

extern void bar ();

int
main (int argc, char **argv)
{
  bar ();
  printf ("OK\n");
  return 0;
}