diff options
author | Mark Johnston <markj@FreeBSD.org> | 2020-07-16 15:09:04 +0000 |
---|---|---|
committer | Mark Johnston <markj@FreeBSD.org> | 2020-07-16 15:09:04 +0000 |
commit | e64080e79c53f2952c5a77c6402cd2473cd45d8c (patch) | |
tree | 5c61c441a2a707a3cfb32c8112736c9fbaab90ad /sys/arm/conf | |
parent | cef5fc74c255369d55850b961163b01e77785a78 (diff) | |
download | src-e64080e79c53f2952c5a77c6402cd2473cd45d8c.tar.gz src-e64080e79c53f2952c5a77c6402cd2473cd45d8c.zip |
Switch from SCTP to SCTP_SUPPORT in GENERIC configs.
This removes SCTP from in-tree kernel configuration files. Now, SCTP
can be enabled by simply loading the module, as discussed on
freebsd-net@.
Reviewed by: tuexen
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D25611
Notes
Notes:
svn path=/head/; revision=363253
Diffstat (limited to 'sys/arm/conf')
-rw-r--r-- | sys/arm/conf/std.armv6 | 2 | ||||
-rw-r--r-- | sys/arm/conf/std.armv7 | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/arm/conf/std.armv6 b/sys/arm/conf/std.armv6 index 0b5a10a9602b..c6672063f724 100644 --- a/sys/arm/conf/std.armv6 +++ b/sys/arm/conf/std.armv6 @@ -12,7 +12,7 @@ options INET6 # IPv6 communications protocols options TCP_HHOOK # hhook(9) framework for TCP device crypto # core crypto support options IPSEC_SUPPORT # Allow kldload of ipsec and tcpmd5 -options SCTP # Stream Control Transmission Protocol +options SCTP_SUPPORT # Allow kldload of SCTP options FFS # Berkeley Fast Filesystem options SOFTUPDATES # Enable FFS soft updates support options UFS_ACL # Support for access control lists diff --git a/sys/arm/conf/std.armv7 b/sys/arm/conf/std.armv7 index 8b50c7d32615..2f0d8e590d0e 100644 --- a/sys/arm/conf/std.armv7 +++ b/sys/arm/conf/std.armv7 @@ -12,7 +12,7 @@ options INET6 # IPv6 communications protocols options TCP_HHOOK # hhook(9) framework for TCP device crypto # core crypto support options IPSEC_SUPPORT # Allow kldload of ipsec and tcpmd5 -options SCTP # Stream Control Transmission Protocol +options SCTP_SUPPORT # Allow kldload of SCTP options FFS # Berkeley Fast Filesystem options SOFTUPDATES # Enable FFS soft updates support options UFS_ACL # Support for access control lists |