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 cook(void);

int __wrap_cook(void)
{
  puts ("PASS");
  return 0;
}

int main()
{
  if (cook () == -1)
    __builtin_abort ();

  return 0;
}