summaryrefslogtreecommitdiffstats
path: root/sys/modules/ep
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2014-08-11 14:50:49 +0000
committerimp <imp@FreeBSD.org>2014-08-11 14:50:49 +0000
commitb20344b2e91bf1c2d0f5e2a8bba517ac86e48975 (patch)
tree9d88e8f28d5de749b45ce092697cd9a893979088 /sys/modules/ep
parent46245d16580e189afb4b7713df241eeafb908dc4 (diff)
downloadFreeBSD-src-b20344b2e91bf1c2d0f5e2a8bba517ac86e48975.zip
FreeBSD-src-b20344b2e91bf1c2d0f5e2a8bba517ac86e48975.tar.gz
Remove dependence on source tree options. Move all kernel module
options into kern.opts.mk and change all the places where we use src.opts.mk to pull in the options. Conditionally define SYSDIR and use SYSDIR/conf/kern.opts.mk instead of a CURDIR path. Replace all instances of CURDIR/../../etc with STSDIR, but only in the affected files. As a special compatibility hack, include bsd.owm.mk at the top of kern.opts.mk to allow the bare build of sys/modules to work on older systems. If the defaults ever change between 9.x, 10.x and current for these options, however, you'll wind up with the host OS' defaults rather than the -current defaults. This hack will be removed when we no longer need to support this build scenario. Reviewed by: jhb Differential Revision: https://phabric.freebsd.org/D529
Diffstat (limited to 'sys/modules/ep')
-rw-r--r--sys/modules/ep/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/modules/ep/Makefile b/sys/modules/ep/Makefile
index 99281a4..9f1dbee 100644
--- a/sys/modules/ep/Makefile
+++ b/sys/modules/ep/Makefile
@@ -1,8 +1,9 @@
# $FreeBSD$
-.include <src.opts.mk>
+SYSDIR?=${.CURDIR}/../..
+.include "${SYSDIR}/conf/kern.opts.mk"
-.PATH: ${.CURDIR}/../../dev/ep
+.PATH: ${SYSDIR}/dev/ep
KMOD= if_ep
SRCS= if_ep.c
OpenPOWER on IntegriCloud