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
{
  .text 0x100 : { 
    text_start = .;
    *(.text)
    *(.pr)
    text_end = .;
  }
  . = 0x1000;
  .data : {
    data_start = .;
    *(.data)
    *(.rw)
    data_end = .;
  }
}