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

MEMORY
{
  ram : ORIGIN = 0x10000, LENGTH = 0x10000
}

SECTIONS
{
  .text : {*(.text)} > ram AT> ram
  .data : ALIGN (16) {*(.data)} > ram AT> ram
  /DISCARD/ : {*(*)}
}