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
# $NetBSD: Findrefs,v 1.2 1995/10/13 16:51:28 gwr Exp $

# Small helper to find out who pulls in X

[ "$1" ] || { echo "$0: match_string" ; exit 1; }

for f in *.lo
do
	nm -p $f | grep "$1" && echo $f
done