From 5ecda1f3c47715e9d3f71e7976ef56da286e1341 Mon Sep 17 00:00:00 2001 From: Bun K Tan Date: Fri, 6 Dec 2024 12:29:44 -0800 Subject: [PATCH] Remove "s" from "Processors" in the check-production.sh script (#298) Signed-off-by: Bun K Tan --- attestation/check-production.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/attestation/check-production.sh b/attestation/check-production.sh index fcb11d7..3989cbb 100755 --- a/attestation/check-production.sh +++ b/attestation/check-production.sh @@ -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}"