mirror of
https://github.com/opnsense/src.git
synced 2026-06-05 06:42:56 -04:00
This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
23 lines
349 B
Makefile
23 lines
349 B
Makefile
IGNORE_PRAGMA= 1
|
|
|
|
load :
|
|
-kldload dtrace
|
|
.if ${MACHINE_CPUARCH} == "i386"
|
|
-kldload sdt
|
|
-kldload fbt
|
|
-kldload prototype
|
|
.endif
|
|
-kldload profile
|
|
-kldload systrace
|
|
kldstat
|
|
|
|
unload :
|
|
-kldunload systrace
|
|
-kldunload profile
|
|
.if ${MACHINE_CPUARCH} == "i386"
|
|
-kldunload prototype
|
|
-kldunload fbt
|
|
-kldunload sdt
|
|
.endif
|
|
-kldunload dtrace
|
|
kldstat
|