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
{
        . = 0x0;
        .text :
        {
                *(.text)
        }

        . = 0x700;
        .text1 :
        {
                *(.text1)
        }
        . = 0x8100;
        .bss :
        {
                *(.bss)
        }
        .data :
        {
                *(.data)
        }
}