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 {
	.text :
	  {
	    text_start = .;
	    tmpdir/sizeof.o 
	    text_end = .;
	  }
	.data : 
	  { 
	    data_start = .;
	    . = . + SIZEOF(.text);
	    data_end = .;
	  }
	.bss :
	  {
	    . = 8;
	    *(.bss)
	  }
}

sizeof_text = SIZEOF(.text);
sizeof_data = SIZEOF(.data);