#!/bin/sh
case "$DPKG_MAINTSCRIPT_PACKAGE" in
    linux-image-*)
	# elilo will be updated later by the kernel postinst hook; no
	# need to update it now.
	exit 0
	;;
    *)
	elilo </dev/null >&2
	;;
esac
