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

OUTPUT_ARCH(arm)
SECTIONS
{
	.text :
	{
		*(.text)
		*(.text.*)
		*(.glue_7t) *(.glue_7)
	}
	. = ALIGN(16);
	.data :
	{
	}
	. = ALIGN(16);
	.sbss :
	{
	}
	. = ALIGN(16);
	.bss :
	{
	}
}