summaryrefslogtreecommitdiffstats
path: root/util/intelmetool
diff options
context:
space:
mode:
authorPaul Menzel <pmenzel@molgen.mpg.de>2021-12-15 10:47:05 +0100
committerFelix Held <felix-coreboot@felixheld.de>2021-12-16 14:17:36 +0000
commit7f5a1eeb24b6e3523d836cb0d3533fbb12f9fdf3 (patch)
treec1cfed28bc081c572f52fdc4933628d050b9c8f8 /util/intelmetool
parent74d2218cc7c5b9d07528a2ffb3b727e52e688bd3 (diff)
downloadcoreboot-7f5a1eeb24b6e3523d836cb0d3533fbb12f9fdf3.tar.gz
coreboot-7f5a1eeb24b6e3523d836cb0d3533fbb12f9fdf3.tar.bz2
coreboot-7f5a1eeb24b6e3523d836cb0d3533fbb12f9fdf3.zip
Spell *Boot Guard* with a space for official spelling
See for example Intel document *Secure the Network Infrastructure – Secure Boot Methodologies* [1]. Change all occurrences with the command below: $ git grep -l BootGuard | xargs sed -i 's/BootGuard/Boot Guard/g' [1]: https://builders.intel.com/docs/networkbuilders/secure-the-network-infrastructure-secure-boot-methodologies.pdf Change-Id: I69fb64b525fb4799bcb9d75624003c0d59b885b5 Signed-off-by: Paul Menzel <pmenzel@molgen.mpg.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/60136 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'util/intelmetool')
-rw-r--r--util/intelmetool/intelmetool.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/util/intelmetool/intelmetool.c b/util/intelmetool/intelmetool.c
index 9105d3b82b39..4216189e0ed9 100644
--- a/util/intelmetool/intelmetool.c
+++ b/util/intelmetool/intelmetool.c
@@ -346,7 +346,7 @@ static void dump_bootguard_info(void)
if (ME_major_ver &&
(ME_major_ver < 9 ||
(ME_major_ver == 9 && ME_minor_ver < 5))) {
- printf(CGRN "Your system isn't BootGuard ready.\n"
+ printf(CGRN "Your system isn't Boot Guard ready.\n"
"You can flash other firmware!\n" RESET);
rehide_me();
return;
@@ -354,7 +354,7 @@ static void dump_bootguard_info(void)
if (pci_read_long(dev, 0x40) & 0x10)
printf(CYEL "Your southbridge configuration is insecure!!\n"
- "BootGuard keys can be overwritten or wiped, or you are "
+ "Boot Guard keys can be overwritten or wiped, or you are "
"in developer mode.\n"
RESET);
rehide_me();
@@ -380,10 +380,10 @@ static void dump_bootguard_info(void)
return;
}
- printf("BootGuard MSR Output : 0x%" PRIx64 "\n", btg.raw);
+ printf("Boot Guard MSR Output : 0x%" PRIx64 "\n", btg.raw);
if (!btg.btg_capability) {
- printf(CGRN "Your system isn't BootGuard ready.\n"
+ printf(CGRN "Your system isn't Boot Guard ready.\n"
"You can flash other firmware!\n" RESET);
return;
}
@@ -412,7 +412,7 @@ static void dump_bootguard_info(void)
"Cache-As-RAM.\nIt might be possible to flash other firmware.\n"
RESET);
} else {
- printf(CGRN "Your system is BootGuard ready but verified boot is disabled.\n"
+ printf(CGRN "Your system is Boot Guard ready but verified boot is disabled.\n"
"You can flash other firmware!\n" RESET);
}
}