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

// Some code for the middle of a program

x = x;
if (x == 0) {
  x = 1;
} else {
  x = 2;
}
if (true) {
  x = x;
} else {
  x = x;
}