Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 19 Mar 2021 19:12:25 +0000 (UTC)
From:      Bernhard Froehlich <decke@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r568811 - in head/net: . wireguard-kmod
Message-ID:  <202103191912.12JJCPbP021204@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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
+}
+]



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202103191912.12JJCPbP021204>