summaryrefslogtreecommitdiff
path: root/debian/cscope.preinst
blob: f2c5f5131345ff05a510dfa3be5168d3fda8fb94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh -e

cleanup_sitestart() {
	if [ -e /etc/emacs/site-start.d/50cscope.el ]; then
		rm -f /etc/emacs/site-start.d/50cscope.el
	fi
}

case "$1" in
	upgrade)
	cleanup_sitestart
	;;

	install|abort-upgrade)
	;;

	*)
	echo "$0 called with unknown argument '$1'" >&2
	exit 1
	;;
esac

#DEBHELPER#
exit 0
d'>380fb942888e7afc3420ce195a5188ff73b5a782 (diff)
IB/hfi1: Add trace message in user IOCTL handling
Add a trace message to HFI1s user IOCTL handling. This allows debugging of which IOCTLs are being handled by the driver. Reviewed-by: Ira Weiny <ira.weiny@intel.com> Signed-off-by: Dennis Dalessandro <dennis.dalessandro@intel.com> Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat