Comment 1 for bug 2048991

Revision history for this message
You-Sheng Yang (vicamo) wrote : Re: upstream Intel VSC firmware paths changed to intel/vsc/

Verified vsc firmware is identical to what we have at this moment, jammy version 20220329.git681281e4-0ubuntu3.24.

for f in intel/vsc/*; do
  f="${f##*/}";
  if [ -f vsc/soc_a1_prod/$f ]; then
    sum_new=$(md5sum intel/vsc/$f | awk '{print $1}');
    sum_cur=$(md5sum vsc/soc_a1_prod/$f | awk '{print $1}');
    [ "${sum_new}" = "${sum_cur}" ] || echo "Checksum mismatch for $f";
  else
    echo "missing $f in vsc/soc_a1_prod/"
  fi;
done