diff options
author | 2009-05-15 15:53:55 +0000 | |
---|---|---|
committer | 2009-05-15 15:53:55 +0000 | |
commit | 94a7fcd36ba34e30b7972be5aba5e2987e19fac7 (patch) | |
tree | 8f96fa30c4e9d82eae3fbc287ce42b385399f1d1 /sys/dev/microcode/rum/build.c | |
parent | Add the "Mvix Nubbin MS-811N" adapter to the list of (diff) | |
download | wireguard-openbsd-94a7fcd36ba34e30b7972be5aba5e2987e19fac7.tar.xz wireguard-openbsd-94a7fcd36ba34e30b7972be5aba5e2987e19fac7.zip |
update run(4) microcode.
split it into two separate files while i'm at it since there are
actually two different firmwares (one for RT2870/RT3070 and one
for >=RT3071).
Diffstat (limited to 'sys/dev/microcode/rum/build.c')
-rw-r--r-- | sys/dev/microcode/rum/build.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/microcode/rum/build.c b/sys/dev/microcode/rum/build.c index 3052401c722..52eca5d5a14 100644 --- a/sys/dev/microcode/rum/build.c +++ b/sys/dev/microcode/rum/build.c @@ -1,4 +1,4 @@ -/* $OpenBSD: build.c,v 1.2 2008/06/29 23:57:58 jsg Exp $ */ +/* $OpenBSD: build.c,v 1.3 2009/05/15 15:53:55 damien Exp $ */ /*- * Copyright (c) 2006 @@ -52,6 +52,7 @@ main(void) { output("rum-rt2573", rt2573, sizeof rt2573); output("run-rt2870", rt2870, sizeof rt2870); + output("run-rt3071", rt3071, sizeof rt3071); return 0; } |