diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2020-06-22 01:02:31 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2020-06-22 01:02:31 +0000 |
commit | 46e0741e2cb898759a4c3813e6e771a9f389d142 (patch) | |
tree | a7aab6f04973641cb390549eef2552b9987a7588 /usr.bin | |
parent | e9b1254101a2001a2f581c8c5315f8684a3a0c6b (diff) |
plug the wireguard ioctls in.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/kdump/Makefile | 3 | ||||
-rw-r--r-- | usr.bin/kdump/mkioctls | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/usr.bin/kdump/Makefile b/usr.bin/kdump/Makefile index 764e5585690..bac23a2d986 100644 --- a/usr.bin/kdump/Makefile +++ b/usr.bin/kdump/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.36 2019/04/14 10:16:00 jsg Exp $ +# $OpenBSD: Makefile,v 1.37 2020/06/22 01:02:30 dlg Exp $ LDSTATIC=${STATIC} PROG= kdump @@ -26,6 +26,7 @@ ioctl.c: ${.CURDIR}/Makefile ${.CURDIR}/mkioctls ${SYS_DIR}/net/if_pppoe.h \ ${SYS_DIR}/net/if_trunk.h \ ${SYS_DIR}/net/if_tun.h \ + ${SYS_DIR}/net/if_wg.h \ ${SYS_DIR}/net/pfvar.h \ ${SYS_DIR}/net/pipex.h \ ${SYS_DIR}/net80211/ieee80211_ioctl.h \ diff --git a/usr.bin/kdump/mkioctls b/usr.bin/kdump/mkioctls index 9579ce21e0e..161061d52a7 100644 --- a/usr.bin/kdump/mkioctls +++ b/usr.bin/kdump/mkioctls @@ -1,5 +1,5 @@ #!/bin/sh - -# $OpenBSD: mkioctls,v 1.41 2019/04/14 10:16:00 jsg Exp $ +# $OpenBSD: mkioctls,v 1.42 2020/06/22 01:02:30 dlg Exp $ # # Copyright (c) 1994 @@ -57,6 +57,7 @@ BEGIN { print "#include <net/if_pppoe.h>" print "#include <net/if_trunk.h>" print "#include <net/if_tun.h>" + print "#include <net/if_wg.h>" print "#include <net/pfvar.h>" print "#include <net/pipex.h>" print "#include <sys/disklabel.h>" |