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: devpubd-run-hooks.in,v 1.3 2015/02/15 15:56:30 jmcneill Exp $
#
# devpubd run hooks

devpubd_event=$1
shift
devpubd_devices=$@
devpubd_hooks_base=@HOOKSDIR@

case $devpubd_event in
device-attach|device-detach)
	for hook in ${devpubd_hooks_base}/*; do
		if [ -x "${hook}" ]; then
			"${hook}" ${devpubd_event} ${devpubd_devices}
		fi
	done
	;;
*)
	;;
esac

exit 0