Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove "s" from "Processors" in the check-production.sh script #298

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions attestation/check-production.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ CPU_MODEL=$(cat /proc/cpuinfo | awk 'match($0,/model.+: ([0-9]+)/,m){ print m[1]
CPU_GEN="unknown generation"
# ref : https://github.com/qemu/qemu/blob/master/target/i386/cpu.c
if [ "$CPU_MODEL" = "143" ]; then
CPU_GEN="4th Gen Intel® Xeon® Scalable Processors (codename: Sapphire Rapids)"
CPU_GEN="4th Gen Intel® Xeon® Scalable Processor (codename: Sapphire Rapids)"
fi
if [ "$CPU_MODEL" = "173" ]; then
CPU_GEN="Intel® Xeon® 6 with P-cores (codename: Granite Rapids)"
fi
if [ "$CPU_MODEL" = "207" ]; then
CPU_GEN="5th Gen Intel® Xeon® Scalable Processors (codename: Emerald Rapids)"
CPU_GEN="5th Gen Intel® Xeon® Scalable Processor (codename: Emerald Rapids)"
fi

echo "CPU: ${CPU_GEN}"
Expand Down