dl_tarball: Upgrade ice comms ddp fw to version 1.3.35.0

ICE driver update to support the Intel Logan Beach NIC (E810-CQDA2T).
and that dictates the upgrade of ddp firmware to ice_comms-1.3.35.0,
which is included in 27_1.zip.

https://www.intel.com/content/www/us/en/download/15084/intel-ethernet-adapter-complete-driver-pack.html

Remove the extra extraction step because it is zip file that we
want, rather than zips of zips.

Verification:
Success Path
- run download_mirror.sh, verify that the ice_comms zip file is
  downloaded in downloads folder.

Story: 2009952
Task: 44895

Signed-off-by: Jiping Ma <jiping.ma2@windriver.com>
Change-Id: I7561543ba0bce5d2fd82a0315f81ba3dc3f1ba0b
This commit is contained in:
Jiping Ma 2022-04-06 01:13:00 -04:00
parent 718dbfb9ca
commit 69030d8a1a
1 changed files with 1 additions and 7 deletions

View File

@ -315,7 +315,7 @@ for line in $(cat $tarball_file); do
# rm -f "$tarball_name"
rm -rf "$directory_name"
elif [[ "${tarball_name}" = '800-Series-DDP-Comms-Package-1.3.31.0.zip' ]]; then
elif [[ "${tarball_name}" = 'ice_comms-1.3.35.0.zip' ]]; then
download_file --quiet "${tarball_url}" "${tarball_name}"
if [ $? -ne 0 ]; then
echo "Warning: failed to download '${tarball_url}'"
@ -324,12 +324,6 @@ for line in $(cat $tarball_file); do
continue
fi
# Just extract exactly what we want, leaving no garbage behind to cleanup
unzip "${tarball_name}" ice_comms-1.3.31.0.zip
# Don't delete the original zip archive we just extracted from.
# We don't use it, but it will prevent re-downloading this file.
# rm -f "${tarball_name}"
elif [[ "$tarball_name" = 'MLNX_OFED_SRC-5.5-1.0.3.2.tgz' ]]; then
srpm_path="${directory_name}/SRPMS/"
download_package "$tarball_name" "$tarball_url"