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

	.macro	define,name
	.text
	.type	\name,%gnu_indirect_function
\name:
	mov	pc,lr
	.size	\name,.-\name
	.endm

	.macro	test_relocs,name
	bl	\name(PLT)
	ldr	r4,1f
	ldr	r4,2f
1:
	.word	\name(GOT)
2:
	.word	\name(GOT_PREL)

	.data
	.word	\name
	.word	\name - .
	.text
	.endm

	.globl	f3
	.hidden	f3

	define	f1
	define	f3

	.data
foo:
	.word	0x11223344

	.text
	.globl	arm
arm:
	test_relocs foo
	test_relocs f1
	test_relocs f3
	.size	arm,.-arm