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

SECTIONS 
{
  .data 0x2000 :
  {
    LONG (foo)
    LONG (bar)
    . = ALIGN (0x10);
    *(.data .rw)
  }
  PROVIDE (foo = .);
  PROVIDE (bar = .);
}