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
{
  . = 0x2000 ;

  _start = .;

  HEAP_SIZE = 0x100;

  .heap : {
    . = HEAP_SIZE;
    . = ALIGN(4);
  }

  _end = .;

  .text : { *(.text) }
  .data : { *(.data) }
  .bss : { *(.bss) }
  /DISCARD/ : { *(*) }
}