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

	.text
	.type   selector, %function
foo:
	movl	$0, %eax
	ret
selector:
	mov	$foo, %eax
	ret
	.type   selector, %gnu_indirect_function
	.globl	_start
_start:
	mov	$selector, %rax
	call	*%rax
	ret
	.section	.note.GNU-stack,"",@progbits