]> git.proxmox.com Git - pve-firmware.git/commit
minimize skip list for current fw submodule version
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Tue, 12 Mar 2019 10:39:17 +0000 (11:39 +0100)
committerFabian Grünbichler <f.gruenbichler@proxmox.com>
Wed, 13 Mar 2019 09:51:04 +0000 (10:51 +0100)
commit433982b11166a94fec88fdb5aa2dbd087edba67b
treeda3d60e20255b33fe05c691fd9a354817828aa2d
parent11262e92b1377a8e73a0ed10938af98c61eba3d7
minimize skip list for current fw submodule version

As once added to the list we never check if it'd be available now we
have some unnecessary entries in the skip list, which this patch
cleans up. Produced by deleting all skip list entries and successive
re-adding them by doing:
./assemble-firmware.pl fwlist-FILE /tmp) 2>&1 | awk '/unable/ { print $5 }' >> skip-cleanedup
and adding only those which are now not found.

The "additions" come from those lines were previously multiple
skipped fws were placed on a single one.

We could also add support for such checks in the assemble-firmware
script, wouldn't be to hard, but for now do this as a starter.

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
assemble-firmware.pl