blob: 204e046706b95bd11f789f2f0ae1be741de39905 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# $FreeBSD$
IGNORE_PRAGMA= 1
load :
-kldload dtrace
.if ${MACHINE_CPUARCH} == "i386"
-kldload sdt
-kldload lockstat
-kldload fbt
-kldload prototype
.endif
-kldload profile
-kldload systrace
kldstat
unload :
-kldunload systrace
-kldunload profile
.if ${MACHINE_CPUARCH} == "i386"
-kldunload prototype
-kldunload fbt
-kldunload lockstat
-kldunload sdt
.endif
-kldunload dtrace
kldstat
|