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

int foo;
__asm__ (".hidden foo");

int
_start (void)
{
  return foo;
}

int
__start (void)
{
  return _start ();
}