summaryrefslogtreecommitdiff
path: root/util/lxbios/cmos_ops.c
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2008-01-18 15:33:49 +0000
committerStefan Reinauer <stepan@openbios.org>2008-01-18 15:33:49 +0000
commitf527e70333e9644f4024737240b9be18f4e2d4d4 (patch)
tree9a6fa00b8e6cebf0102d6f2f985097fa754723fd /util/lxbios/cmos_ops.c
parent8df401db3bb6419c8fc9339dcc505332dff33bfe (diff)
downloadcoreboot-f527e70333e9644f4024737240b9be18f4e2d4d4.tar.xz
rename linuxbios -> coreboot
Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3055 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/lxbios/cmos_ops.c')
-rw-r--r--util/lxbios/cmos_ops.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/util/lxbios/cmos_ops.c b/util/lxbios/cmos_ops.c
index 02b7049b3c..4bb416272d 100644
--- a/util/lxbios/cmos_ops.c
+++ b/util/lxbios/cmos_ops.c
@@ -8,8 +8,8 @@
* UCRL-CODE-2003-012
* All rights reserved.
*
- * This file is part of lxbios, a utility for reading/writing LinuxBIOS
- * parameters and displaying information from the LinuxBIOS table.
+ * This file is part of lxbios, a utility for reading/writing coreboot
+ * parameters and displaying information from the coreboot table.
* For details, see <http://www.llnl.gov/linux/lxbios/>.
*
* Please also read the file DISCLAIMER which is included in this software
@@ -154,7 +154,7 @@ int prepare_cmos_write (const cmos_entry_t *e, const char value_str[],
/****************************************************************************
* cmos_checksum_read
*
- * Read the checksum for the LinuxBIOS parameters stored in CMOS and return
+ * Read the checksum for the coreboot parameters stored in CMOS and return
* this value.
****************************************************************************/
uint16_t cmos_checksum_read (void)
@@ -169,7 +169,7 @@ uint16_t cmos_checksum_read (void)
/****************************************************************************
* cmos_checksum_write
*
- * Set the checksum for the LinuxBIOS parameters stored in CMOS to
+ * Set the checksum for the coreboot parameters stored in CMOS to
* 'checksum'.
****************************************************************************/
void cmos_checksum_write (uint16_t checksum)
@@ -185,7 +185,7 @@ void cmos_checksum_write (uint16_t checksum)
/****************************************************************************
* cmos_checksum_compute
*
- * Compute a checksum for the LinuxBIOS parameter values currently stored in
+ * Compute a checksum for the coreboot parameter values currently stored in
* CMOS and return this checksum.
****************************************************************************/
uint16_t cmos_checksum_compute (void)
@@ -202,7 +202,7 @@ uint16_t cmos_checksum_compute (void)
/****************************************************************************
* cmos_checksum_verify
*
- * Verify that the LinuxBIOS CMOS checksum is valid. If checksum is not
+ * Verify that the coreboot CMOS checksum is valid. If checksum is not
* valid then print warning message and exit.
****************************************************************************/
void cmos_checksum_verify (void)
@@ -214,7 +214,7 @@ void cmos_checksum_verify (void)
set_iopl(0);
if (computed != actual)
- { fprintf(stderr, "%s: Warning: LinuxBIOS CMOS checksum is bad.\n",
+ { fprintf(stderr, "%s: Warning: Coreboot CMOS checksum is bad.\n",
prog_name);
exit(1);
}