diff options
author | Marius Strobl <marius@FreeBSD.org> | 2018-11-27 12:11:16 +0000 |
---|---|---|
committer | Marius Strobl <marius@FreeBSD.org> | 2018-11-27 12:11:16 +0000 |
commit | b34bb3bf03d3d5c4b8a9778e9de8ee2e8bac5ed4 (patch) | |
tree | 262b2c5dc1819eb24d0858649226a902e81217b5 | |
parent | ceedec4bce2161062ffcacf7f07e364c8cfe09bc (diff) | |
download | src-b34bb3bf03d3d5c4b8a9778e9de8ee2e8bac5ed4.tar.gz src-b34bb3bf03d3d5c4b8a9778e9de8ee2e8bac5ed4.zip |
Notes
-rw-r--r-- | ObsoleteFiles.inc | 2 | ||||
-rw-r--r-- | UPDATING | 7 | ||||
-rw-r--r-- | sys/modules/iavf/Makefile | 2 |
3 files changed, 11 insertions, 0 deletions
diff --git a/ObsoleteFiles.inc b/ObsoleteFiles.inc index d6161382831d..cf458c265a30 100644 --- a/ObsoleteFiles.inc +++ b/ObsoleteFiles.inc @@ -67,6 +67,8 @@ OLD_LIBS+=usr/lib32/libcap_pwd.so.0 OLD_LIBS+=usr/lib32/libcap_random.so.0 OLD_LIBS+=usr/lib32/libcap_dns.so.0 OLD_LIBS+=usr/lib32/libcap_syslog.so.0 +# 20181012: rename of ixlv(4) to iavf(4) +OLD_FILES+=usr/share/man/man4/ixlv.4.gz # 20181009: OpenSSL 1.1.1 OLD_FILES+=usr/include/openssl/des_old.h OLD_FILES+=usr/include/openssl/dso.h @@ -83,6 +83,13 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 13.x IS SLOW: loading from X11 startup. These will become the defaults in 13-current shortly. +20181012: + The ixlv(4) driver has been renamed to iavf(4). As a consequence, + custom kernel and module loading configuration files must be updated + accordingly. Moreover, interfaces previous presented as ixlvN to the + system are now exposed as iavfN and network configuration files must + be adjusted as necessary. + 20181009: OpenSSL has been updated to version 1.1.1. This update included additional various API changes througout the base system. It is diff --git a/sys/modules/iavf/Makefile b/sys/modules/iavf/Makefile index 48d9c1fe23c9..c3a1c3f5400f 100644 --- a/sys/modules/iavf/Makefile +++ b/sys/modules/iavf/Makefile @@ -15,4 +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 + .include <bsd.kmod.mk> |