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

#include <stdio.h>

extern int *psym1, *psym2;
extern int strongsym;

int
main (void)
{
  printf ("value via psym1: %d, via psym2: %d, strong %d\n",
	  *psym1, *psym2, strongsym);
  return 0;
}