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

1
2
3
4
5
6
7
8
SECTIONS
{
  .text : {*(.text .pr)}
  .data ALIGN(0x1000) : AT (ALIGN (LOADADDR (.text) + SIZEOF (.text), 0x80))
    {}
  ASSERT (LOADADDR(.data) == 0x80, "dyadic ALIGN broken")
  ASSERT (ADDR(.data) == 0x1000, "monadic ALIGN broken")
}