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
{
  TEXTMEM : ORIGIN = 0x10000, LENGTH = 32K
  DATAMEM : ORIGIN = 0x20000, LENGTH = 32K
}

SECTIONS
{
  .text : { *(.text) } > TEXTMEM
  .data : { *(.data) } > DATAMEM
  .bss  : { *(.bss)  } > DATAMEM

  /DISCARD/ : { *(.MIPS.abiflags) *(.gnu.attributes) }
}