aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/iavf
diff options
context:
space:
mode:
authorAlan Somers <asomers@FreeBSD.org>2019-04-20 12:51:05 +0000
committerAlan Somers <asomers@FreeBSD.org>2019-04-20 12:51:05 +0000
commit43d1e6ee299ad4e143d90d3ad374d1c24bd3306f (patch)
treee5ec15c198f16e2f6720d3835dfad74bbc7837b7 /sys/modules/iavf
parent0356220eba392d636e1f9ad5f59b35e21e0f7b5a (diff)
Use symlinks for kernel modules rather than hardlinks
When aliasing a kernel module to a different name (ie if_igb for if_em), it's better to use symlinks than hard links. kldxref will omit entries for the links, ensuring that the loaded module has the correct name. Reviewed by: imp MFC after: 2 weeks Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D19979
Notes
Notes: svn path=/head/; revision=346441
Diffstat (limited to 'sys/modules/iavf')
-rw-r--r--sys/modules/iavf/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/modules/iavf/Makefile b/sys/modules/iavf/Makefile
index c3a1c3f5400f..4d61691b7621 100644
--- a/sys/modules/iavf/Makefile
+++ b/sys/modules/iavf/Makefile
@@ -15,6 +15,6 @@ SRCS += i40e_common.c i40e_nvm.c i40e_adminq.c
# Enable asserts and other debugging facilities
# CFLAGS += -DINVARIANTS -DINVARIANTS_SUPPORT -DWITNESS
-LINKS= ${KMODDIR}/${KMOD}.ko ${KMODDIR}/if_ixlv.ko
+SYMLINKS= ${KMOD}.ko ${KMODDIR}/if_ixlv.ko
.include <bsd.kmod.mk>