diff options
author | 2015-06-06 07:19:56 +0000 | |
---|---|---|
committer | 2015-06-06 07:19:56 +0000 | |
commit | 362ab12c60ce8729b5cdef03d179ee8a8b87133c (patch) | |
tree | 3a3549c59e8df0a3c948b7d58bc85663a89dc161 | |
parent | Use ints for the calculations rather than u_char, they could end up (diff) | |
download | wireguard-openbsd-362ab12c60ce8729b5cdef03d179ee8a8b87133c.tar.xz wireguard-openbsd-362ab12c60ce8729b5cdef03d179ee8a8b87133c.zip |
Add rtwn(4) to fw_update. ok espie@, czarkoff@ suggested a similar diff
-rw-r--r-- | usr.sbin/pkg_add/OpenBSD/FwUpdate.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/pkg_add/OpenBSD/FwUpdate.pm b/usr.sbin/pkg_add/OpenBSD/FwUpdate.pm index 8403c858719..970d9f56ff0 100644 --- a/usr.sbin/pkg_add/OpenBSD/FwUpdate.pm +++ b/usr.sbin/pkg_add/OpenBSD/FwUpdate.pm @@ -1,7 +1,7 @@ #! /usr/bin/perl # ex:ts=8 sw=4: -# $OpenBSD: FwUpdate.pm,v 1.18 2015/04/16 13:29:16 espie Exp $ +# $OpenBSD: FwUpdate.pm,v 1.19 2015/06/06 07:19:56 stsp Exp $ # # Copyright (c) 2014 Marc Espie <espie@openbsd.org> # @@ -136,7 +136,7 @@ OpenBSD::Auto::cache(updater, }); my %possible_drivers = map {($_, 1)} - (qw(acx athn bwi ipw iwi iwm iwn malo otus pgt radeondrm rsu uath + (qw(acx athn bwi ipw iwi iwm iwn malo otus pgt radeondrm rsu rtwn uath upgt urtwn uvideo wpi)); |