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>

extern int select ();
extern int f2 (int);

int main (void)
{
  if (select () == 0 && f2 (0) == 22222)
    printf ("PASS\n");
  return 0;
}