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

#!/bin/sh

x=striptest.xx.$$
y=striptest.yy.$$

cp $1 $x
strip $x
cp $2 $y
strip $y

doobjcmp $x $y
exit

#eof