iwlwifi: script to extract firmware details

When having to find a firmware image with a lower version number
we must only break the inner but not also the outer loop so we
keep looking at any possibly remaining firmware details.

While here also try to find a version from max..1 and not from 1..max.

Sponsored by:	The FreeBSD Foundation

(cherry picked from commit 52f8e99e7e5e6fab52b3fff535d62b873f8c02dd)
This commit is contained in:
Bjoern A. Zeeb 2024-11-08 18:09:37 +00:00 committed by Franco Fichtner
parent e5b6d144ed
commit 3d4e7a7026

View file

@ -155,11 +155,11 @@ list_fw()
vn=$(echo ${fx} | awk '{ gsub(".ucode$", ""); gsub("^.*-", ""); print; }')
#echo "BN ${bn} VN ${vn}"
# Single digits are not zero-padded so just ${i} will be fine.
for i in `jot ${vn} 1`; do
for i in `jot ${vn} ${vn} 1`; do
xn="${bn}-${i}.ucode"
if test -e ${LFWDIR}/${xn}; then
lx="${lx} ${xn}"
break 2;
break
fi
done
;;