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> Reviewed-on: https://review.coreboot.org/20030 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
This commit is contained in:
parent
cd87e1ba2d
commit
a564811e71
|
@ -313,7 +313,7 @@ int parse_elf_to_stage(const struct buffer *input, struct buffer *output,
|
|||
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,
|
||||
|
|
|
@ -6,7 +6,7 @@ metadataformat = "yaml"
|
|||
canonifyurls = true
|
||||
|
||||
[params]
|
||||
provider = "Coreboot"
|
||||
provider = "coreboot"
|
||||
repo_url = "https://review.coreboot.org/cgit/coreboot.git"
|
||||
logo = "images/coreboot.svg"
|
||||
favicon = "images/favicon.png"
|
||||
|
|
|
@ -227,7 +227,7 @@ void cmos_checksum_verify(void)
|
|||
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);
|
||||
|
|
|
@ -325,7 +325,7 @@ void dump_lbtable(void)
|
|||
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"
|
||||
|
|
|
@ -1 +1 @@
|
|||
This script creates the page https://www.coreboot.org/Coreboot_Options
|
||||
This script creates the page https://www.coreboot.org/coreboot_Options
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env python
|
||||
#
|
||||
# kconfig2wiki - Kconfig to MediaWiki converter for
|
||||
# https://www.coreboot.org/Coreboot_Options
|
||||
# https://www.coreboot.org/coreboot_Options
|
||||
#
|
||||
# Copyright (C) 2010 coresystems GmbH
|
||||
# based on http://landley.net/kdocs/make/menuconfig2html.py
|
||||
|
|
Loading…
Reference in New Issue