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 <stdio.h>

int bar = 10;

void
foo (void)
{
  if (bar == 10)
    printf ("bar is in DSO.\n");
  else if (bar == -20)
    printf ("bar is in main.\n");
  else
    printf ("FAIL\n");
}