| version 1.129, 2021/12/25 04:04:41 |
version 1.137, 2021/12/26 18:39:46 |
|
|
| FWURL=http://firmware.openbsd.org/firmware/${HTTP_FWDIR} |
FWURL=http://firmware.openbsd.org/firmware/${HTTP_FWDIR} |
| FWPUB_KEY=${DESTDIR}/etc/signify/openbsd-${VERSION}-fw.pub |
FWPUB_KEY=${DESTDIR}/etc/signify/openbsd-${VERSION}-fw.pub |
| |
|
| |
DRYRUN=false |
| VERBOSE=false |
VERBOSE=false |
| DELETE=false |
DELETE=false |
| DOWNLOAD=true |
DOWNLOAD=true |
|
|
| SECONDS=0 |
SECONDS=0 |
| sleep 1 |
sleep 1 |
| else |
else |
| kill -INT -"$FTPPID" |
kill -INT -"$FTPPID" 2>/dev/null |
| _error=" (timed out)" |
_error=" (timed out)" |
| fi |
fi |
| else |
else |
|
|
| |
|
| # When we're not in the installer, the dmesg.boot can |
# When we're not in the installer, the dmesg.boot can |
| # contain multiple boots, so only look in the last one |
# contain multiple boots, so only look in the last one |
| _dmesgtail="$( echo ; sed -n 'H;/^OpenBSD/h;${g;p;}' /var/run/dmesg.boot | |
_dmesgtail="$( echo ; sed -n 'H;/^OpenBSD/h;${g;p;}' /var/run/dmesg.boot )" |
| grep -e "^[a-z][a-z]*[0-9]" -e " not configured " )" |
|
| |
|
| grep -v '^[[:space:]]*#' "$FWPATTERNS" | |
grep -v '^[[:space:]]*#' "$FWPATTERNS" | |
| while read -r _d _m; do |
while read -r _d _m; do |
|
|
| set -sA _devices -- $( |
set -sA _devices -- $( |
| firmware_in_dmesg |
firmware_in_dmesg |
| for _d in $( installed_firmware '*' '-firmware-' '*' ); do |
for _d in $( installed_firmware '*' '-firmware-' '*' ); do |
| echo "$( firmware_devicename "$_d" )" |
firmware_devicename "$_d" |
| done |
done |
| ) |
) |
| |
|
| [ "${_devices[*]:-}" ] || return 0 |
[ "${_devices[*]:-}" ] || return 0 |
| for _d in "${_devices[@]}"; do |
for _d in "${_devices[@]}"; do |
| [[ $_last = $_d ]] && continue |
[ "$_last" = "$_d" ] && continue |
| echo $_d |
echo "$_d" |
| _last="$_d" |
_last="$_d" |
| done |
done |
| } |
} |
|
|
| |
|
| ALL=false |
ALL=false |
| OPT_D= |
OPT_D= |
| while getopts :adDp:v name |
while getopts :adDnp:v name |
| do |
do |
| case "$name" in |
case "$name" in |
| a) ALL=true ;; |
a) ALL=true ;; |
| d) DELETE=true ;; |
d) DELETE=true ;; |
| D) OPT_D=true ;; |
D) OPT_D=true ;; |
| |
n) DRYRUN=true ;; |
| p) LOCALSRC="$OPTARG" ;; |
p) LOCALSRC="$OPTARG" ;; |
| v) VERBOSE=true ;; |
v) VERBOSE=true ;; |
| :) |
:) |
|
|
| if [ "$OPT_D" ]; then |
if [ "$OPT_D" ]; then |
| INSTALL=false |
INSTALL=false |
| LOCALSRC="${LOCALSRC:-.}" |
LOCALSRC="${LOCALSRC:-.}" |
| |
elif [ "$LOCALSRC" ]; then |
| |
DOWNLOAD=false |
| fi |
fi |
| |
|
| if [ -x /usr/bin/id ] && [ "$(/usr/bin/id -u)" != 0 ]; then |
if [ -x /usr/bin/id ] && [ "$(/usr/bin/id -u)" != 0 ]; then |
|
|
| deleted='' |
deleted='' |
| if [ "${installed:-}" ]; then |
if [ "${installed:-}" ]; then |
| for fw in "${installed[@]}"; do |
for fw in "${installed[@]}"; do |
| delete_firmware "$fw" || continue |
if "$DRYRUN"; then |
| |
"$VERBOSE" && echo "Delete $fw" |
| |
else |
| |
delete_firmware "$fw" || continue |
| |
fi |
| deleted="$deleted,$( firmware_devicename "$fw" )" |
deleted="$deleted,$( firmware_devicename "$fw" )" |
| done |
done |
| fi |
fi |
|
|
| if "$INSTALL" && [ "${installed[*]:-}" ]; then |
if "$INSTALL" && [ "${installed[*]:-}" ]; then |
| for i in "${installed[@]}"; do |
for i in "${installed[@]}"; do |
| if [ "${f##*/}" = "$i.tgz" ]; then |
if [ "${f##*/}" = "$i.tgz" ]; then |
| "$VERBOSE" && echo "$i already installed" |
"$VERBOSE" && echo "Keep $i" |
| kept="$kept,$d" |
kept="$kept,$d" |
| continue 2 |
continue 2 |
| fi |
fi |
|
|
| |
|
| if [ -e "$f" ]; then |
if [ -e "$f" ]; then |
| if "$DOWNLOAD"; then |
if "$DOWNLOAD"; then |
| "$VERBOSE" && echo "Verify existing ${f##*/}" |
"$VERBOSE" && ! "$INSTALL" && |
| verify "$f" || continue |
echo "Keep/Verify ${f##*/}" |
| "$INSTALL" || kept="$kept,$d" |
"$DRYRUN" || verify "$f" || continue |
| |
"$INSTALL" || kept="$kept,$d" |
| # else assume it was verified when downloaded |
# else assume it was verified when downloaded |
| fi |
fi |
| elif "$DOWNLOAD"; then |
elif "$DOWNLOAD"; then |
| fetch "$f" || continue |
if "$DRYRUN"; then |
| verify "$f" || continue |
"$VERBOSE" && echo "Get/Verify ${f##*/}" |
| |
else |
| |
fetch "$f" || continue |
| |
verify "$f" || continue |
| |
fi |
| "$INSTALL" || added="$added,$d" |
"$INSTALL" || added="$added,$d" |
| elif "$INSTALL"; then |
elif "$INSTALL"; then |
| echo "Cannot install ${f##*/}, not found" >&2 |
echo "Cannot install ${f##*/}, not found" >&2 |
|
|
| removed=false |
removed=false |
| if [ "${installed[*]:-}" ]; then |
if [ "${installed[*]:-}" ]; then |
| for i in "${installed[@]}"; do |
for i in "${installed[@]}"; do |
| delete_firmware "$i" |
"$DRYRUN" || delete_firmware "$i" |
| removed=true |
removed=true |
| done |
done |
| fi |
fi |
| |
|
| add_firmware "$f" |
"$DRYRUN" || add_firmware "$f" |
| |
|
| |
f="${f##*/}" |
| |
f="${f%.tgz}" |
| if "$removed"; then |
if "$removed"; then |
| |
"$DRYRUN" && "$VERBOSE" && echo "Update $f" |
| updated="$updated,$d" |
updated="$updated,$d" |
| else |
else |
| |
"$DRYRUN" && "$VERBOSE" && echo "Install $f" |
| added="$added,$d" |
added="$added,$d" |
| fi |
fi |
| done |
done |