blob: 5709c8184840b51a46418d0667ff22e82b324731 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
#!/bin/sh
# Copyright (c) 2011 Alexander Hall <alexander@beard.se>
#
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
# This is the list of drivers we should look for
DRIVERS="acx athn bwi ipw iwi iwn malo otus pgt rsu uath ueagle upgt urtwn
uvideo wpi"
PKG_ADD="pkg_add -D repair"
[ 0 = $(id -u) ] || { echo "${0##*/} must be run as root" >&2; exit 1; }
usage() {
echo "usage: ${0##*/} [-v]" >&2
exit 1
}
verbose=
while getopts 'v' s "$@" 2>&-; do
case "$s" in
v) verbose=-v ;;
*) usage ;;
esac
done
# No additional arguments allowed
[ $# = $(($OPTIND-1)) ] || usage
set -- $(sysctl -n kern.version | sed 's/^OpenBSD \([0-9]\.[0-9]\)\([^ ]*\).*/\1 \2/;q')
version=$1
tag=$2
[ -n "$tag" -a X"$tag" != X"-stable" ] && version=snapshots
export PKG_PATH=http://firmware.openbsd.org/firmware/$version/
installed=$(pkg_info -q)
install=
update=
for driver in $DRIVERS; do
if print -r -- "$installed" | grep -q "^${driver}-firmware-"; then
update="$update ${driver}-firmware"
elif grep -q "^${driver}[0-9][0-9]* at " /var/run/dmesg.boot; then
install="$install ${driver}-firmware"
fi
done
[ "$install$update" ] || exit 0
# Install missing firmwares
[ "$install" ] && $PKG_ADD $verbose $install
# Update installed firmwares
[ "$update" ] && $PKG_ADD $verbose -u $update
|