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
{
  . = SIZEOF_HEADERS;
  .text : { *(.text .text.*) }
  .data : { *(.data .data.*) }
  .bss : { *(.bss .bss.*) *(COMMON) }
  .sbss : { *(.sbss .sbss.*) }
  .note : { *(.note .note.*) }
  .rela : { *(.rela .rela.*) }
  .rel : { *(.rel .rel.*) }

  /DISCARD/ : {
            *(.reginfo) *(.MIPS.abiflags) *(.MIPS.options) *(.trampolines)
            *(.iplt*) *(.note*) *(.got*) *(.igot*) *(.*.attributes) *(.*.info)
            *(.pdr) "linker stubs*"(*)  }
}