svn commit: r568811 - in head/net: . wireguard-kmod

Bernhard Froehlich decke at FreeBSD.org
Fri Mar 19 19:12:26 UTC 2021


Author: decke
Date: Fri Mar 19 19:12:25 2021
New Revision: 568811
URL: https://svnweb.freebsd.org/changeset/ports/568811

Log:
  Kernel module for FreeBSD to support Wireguard.
  
  At this time this code is new, unvetted, possibly buggy, and should be
  considered "experimental". It might contain security issues. We gladly
  welcome your testing and bug reports, but do keep in mind that this code
  is new, so some caution should be exercised at the moment for using it
  in mission critical environments.
  
  WWW: https://git.zx2c4.com/wireguard-freebsd/

Added:
  head/net/wireguard-kmod/
  head/net/wireguard-kmod/Makefile   (contents, props changed)
  head/net/wireguard-kmod/distinfo   (contents, props changed)
  head/net/wireguard-kmod/pkg-descr   (contents, props changed)
  head/net/wireguard-kmod/pkg-message   (contents, props changed)
Modified:
  head/net/Makefile

Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile	Fri Mar 19 19:07:11 2021	(r568810)
+++ head/net/Makefile	Fri Mar 19 19:12:25 2021	(r568811)
@@ -1528,6 +1528,7 @@
     SUBDIR += widentd
     SUBDIR += wireguard
     SUBDIR += wireguard-go
+    SUBDIR += wireguard-kmod
     SUBDIR += wireshark
     SUBDIR += wireshark-lite
     SUBDIR += wlan2eth

Added: head/net/wireguard-kmod/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/wireguard-kmod/Makefile	Fri Mar 19 19:12:25 2021	(r568811)
@@ -0,0 +1,23 @@
+# $FreeBSD$
+
+PORTNAME=	wireguard-kmod
+PORTVERSION=	0.0.20210319
+CATEGORIES=	net
+MASTER_SITES=	https://git.zx2c4.com/wireguard-freebsd/snapshot/
+DISTNAME=	wireguard-freebsd-${PORTVERSION}
+
+MAINTAINER=	decke at FreeBSD.org
+COMMENT=	WireGuard implementation for the FreeBSD kernel
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKDIR}/${DISTNAME}/COPYING
+
+IGNORE_FreeBSD_11=	only for FreeBSD 12.1 and newer
+
+USES=		kmod tar:xz uidfix
+
+WRKSRC=		${WRKDIR}/${DISTNAME}/src
+
+PLIST_FILES=	${KMODDIR}/if_wg.ko
+
+.include <bsd.port.mk>

Added: head/net/wireguard-kmod/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/wireguard-kmod/distinfo	Fri Mar 19 19:12:25 2021	(r568811)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1616180810
+SHA256 (wireguard-freebsd-0.0.20210319.tar.xz) = 96836d90a8daad863ccd9503e3bad4ca6c4c25df4892fc1e55b7a8f7b03afbcd
+SIZE (wireguard-freebsd-0.0.20210319.tar.xz) = 46516

Added: head/net/wireguard-kmod/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/wireguard-kmod/pkg-descr	Fri Mar 19 19:12:25 2021	(r568811)
@@ -0,0 +1,9 @@
+Kernel module for FreeBSD to support Wireguard.
+
+At this time this code is new, unvetted, possibly buggy, and should be
+considered "experimental". It might contain security issues. We gladly
+welcome your testing and bug reports, but do keep in mind that this code
+is new, so some caution should be exercised at the moment for using it
+in mission critical environments.
+
+WWW: https://git.zx2c4.com/wireguard-freebsd/

Added: head/net/wireguard-kmod/pkg-message
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/wireguard-kmod/pkg-message	Fri Mar 19 19:12:25 2021	(r568811)
@@ -0,0 +1,11 @@
+[
+{ type: install
+  message: <<EOM
+At this time this code is new, unvetted, possibly buggy, and should be
+considered "experimental". It might contain security issues. We gladly
+welcome your testing and bug reports, but do keep in mind that this code
+is new, so some caution should be exercised at the moment for using it
+in mission critical environments.
+EOM
+}
+]


More information about the svn-ports-head mailing list