Martin Roth has uploaded this change for review. ( https://review.coreboot.org/20030
Change subject: util: change coreboot to lowercase ......................................................................
util: change coreboot to lowercase
The word 'coreboot' should always be written in lowercase, even at the start of a sentence.
Change-Id: I0a024d82d331c0794fe087e440b4e1924129a13c Signed-off-by: Martin Roth martinroth@google.com --- M util/cbfstool/cbfs-mkstage.c M util/hugo/config.toml M util/nvramtool/cmos_ops.c M util/nvramtool/lbtable.c M util/optionlist/README M util/optionlist/kconfig2wiki 6 files changed, 6 insertions(+), 6 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/30/20030/1
diff --git a/util/cbfstool/cbfs-mkstage.c b/util/cbfstool/cbfs-mkstage.c index 53d3edb..85c3e4f 100644 --- a/util/cbfstool/cbfs-mkstage.c +++ b/util/cbfstool/cbfs-mkstage.c @@ -313,7 +313,7 @@ outheader.data = output->data; outheader.size = 0;
- /* Coreboot expects entry point to be physical address. Thus, adjust the + /* coreboot expects entry point to be physical address. Thus, adjust the * entry point accordingly. */ fill_cbfs_stage(&outheader, algo, ehdr->e_entry + virt_to_phys, diff --git a/util/hugo/config.toml b/util/hugo/config.toml index d29a20d..e58c4b3 100644 --- a/util/hugo/config.toml +++ b/util/hugo/config.toml @@ -6,7 +6,7 @@ canonifyurls = true
[params] - provider = "Coreboot" + provider = "coreboot" repo_url = "https://review.coreboot.org/cgit/coreboot.git" logo = "images/coreboot.svg" favicon = "images/favicon.png" diff --git a/util/nvramtool/cmos_ops.c b/util/nvramtool/cmos_ops.c index 6f616a0..969586c 100644 --- a/util/nvramtool/cmos_ops.c +++ b/util/nvramtool/cmos_ops.c @@ -227,7 +227,7 @@ set_iopl(0);
if (computed != actual) { - fprintf(stderr, "%s: Warning: Coreboot CMOS checksum is bad.\n", + fprintf(stderr, "%s: Warning: coreboot CMOS checksum is bad.\n", prog_name); fprintf(stderr, "Computed checksum: 0x%x. Stored checksum: 0x%x\n", computed, actual); diff --git a/util/nvramtool/lbtable.c b/util/nvramtool/lbtable.c index 5db61c5..81ac203 100644 --- a/util/nvramtool/lbtable.c +++ b/util/nvramtool/lbtable.c @@ -325,7 +325,7 @@ const struct lb_record *lbrec;
p = ((const char *)lbtable) + lbtable->header_bytes; - printf("Coreboot table at physical address 0x%lx:\n" + printf("coreboot table at physical address 0x%lx:\n" " signature: 0x%x (ASCII: %c%c%c%c)\n" " header_bytes: 0x%x (decimal: %d)\n" " header_checksum: 0x%x (decimal: %d)\n" diff --git a/util/optionlist/README b/util/optionlist/README index 616633a..d55546d 100644 --- a/util/optionlist/README +++ b/util/optionlist/README @@ -1 +1 @@ -This script creates the page http://www.coreboot.org/Coreboot_Options +This script creates the page http://www.coreboot.org/coreboot_Options diff --git a/util/optionlist/kconfig2wiki b/util/optionlist/kconfig2wiki index a587a9c..9c4ee7c 100755 --- a/util/optionlist/kconfig2wiki +++ b/util/optionlist/kconfig2wiki @@ -1,7 +1,7 @@ #!/usr/bin/env python # # kconfig2wiki - Kconfig to MediaWiki converter for -# http://www.coreboot.org/Coreboot_Options +# http://www.coreboot.org/coreboot_Options # # Copyright (C) 2010 coresystems GmbH # based on http://landley.net/kdocs/make/menuconfig2html.py