aboutsummaryrefslogtreecommitdiff
path: root/src/lib/version.c
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2008-01-18 15:08:58 +0000
committerStefan Reinauer <stepan@openbios.org>2008-01-18 15:08:58 +0000
commitf8ee1806ac524bc782c93eccc59ee3c929abddb9 (patch)
tree7daab6b3aa82476a10d38fbf68068f4a409d2ce9 /src/lib/version.c
parent7e61e45402aba2b90997f4f02ca8266cf65a229a (diff)
Rename almost all occurences of LinuxBIOS to coreboot.
Due to the automatic nature of this update, I am self-acking. It worked in abuild. Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3053 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/lib/version.c')
-rw-r--r--src/lib/version.c58
1 files changed, 29 insertions, 29 deletions
diff --git a/src/lib/version.c b/src/lib/version.c
index 028e0062b2..404f50d730 100644
--- a/src/lib/version.c
+++ b/src/lib/version.c
@@ -7,52 +7,52 @@
#error MAINBOARD_PART_NUMBER not defined
#endif
-#ifndef LINUXBIOS_VERSION
-#error LINUXBIOS_VERSION not defined
+#ifndef COREBOOT_VERSION
+#error COREBOOT_VERSION not defined
#endif
-#ifndef LINUXBIOS_BUILD
-#error LINUXBIOS_BUILD not defined
+#ifndef COREBOOT_BUILD
+#error COREBOOT_BUILD not defined
#endif
-#ifndef LINUXBIOS_COMPILE_TIME
-#error LINUXBIOS_COMPILE_TIME not defined
+#ifndef COREBOOT_COMPILE_TIME
+#error COREBOOT_COMPILE_TIME not defined
#endif
-#ifndef LINUXBIOS_COMPILE_BY
-#error LINUXBIOS_COMPILE_BY not defined
+#ifndef COREBOOT_COMPILE_BY
+#error COREBOOT_COMPILE_BY not defined
#endif
-#ifndef LINUXBIOS_COMPILE_HOST
-#error LINUXBIOS_COMPILE_HOST not defined
+#ifndef COREBOOT_COMPILE_HOST
+#error COREBOOT_COMPILE_HOST not defined
#endif
-#ifndef LINUXBIOS_COMPILER
-#error LINUXBIOS_COMPILER not defined
+#ifndef COREBOOT_COMPILER
+#error COREBOOT_COMPILER not defined
#endif
-#ifndef LINUXBIOS_LINKER
-#error LINUXBIOS_LINKER not defined
+#ifndef COREBOOT_LINKER
+#error COREBOOT_LINKER not defined
#endif
-#ifndef LINUXBIOS_ASSEMBLER
-#error LINUXBIOS_ASSEMBLER not defined
+#ifndef COREBOOT_ASSEMBLER
+#error COREBOOT_ASSEMBLER not defined
#endif
-#ifndef LINUXBIOS_EXTRA_VERSION
-#define LINUXBIOS_EXTRA_VERSION ""
+#ifndef COREBOOT_EXTRA_VERSION
+#define COREBOOT_EXTRA_VERSION ""
#endif
const char mainboard_vendor[] = MAINBOARD_VENDOR;
const char mainboard_part_number[] = MAINBOARD_PART_NUMBER;
-const char linuxbios_version[] = LINUXBIOS_VERSION;
-const char linuxbios_extra_version[] = LINUXBIOS_EXTRA_VERSION;
-const char linuxbios_build[] = LINUXBIOS_BUILD;
-
-const char linuxbios_compile_time[] = LINUXBIOS_COMPILE_TIME;
-const char linuxbios_compile_by[] = LINUXBIOS_COMPILE_BY;
-const char linuxbios_compile_host[] = LINUXBIOS_COMPILE_HOST;
-const char linuxbios_compile_domain[] = LINUXBIOS_COMPILE_DOMAIN;
-const char linuxbios_compiler[] = LINUXBIOS_COMPILER;
-const char linuxbios_linker[] = LINUXBIOS_LINKER;
-const char linuxbios_assembler[] = LINUXBIOS_ASSEMBLER;
+const char coreboot_version[] = COREBOOT_VERSION;
+const char coreboot_extra_version[] = COREBOOT_EXTRA_VERSION;
+const char coreboot_build[] = COREBOOT_BUILD;
+
+const char coreboot_compile_time[] = COREBOOT_COMPILE_TIME;
+const char coreboot_compile_by[] = COREBOOT_COMPILE_BY;
+const char coreboot_compile_host[] = COREBOOT_COMPILE_HOST;
+const char coreboot_compile_domain[] = COREBOOT_COMPILE_DOMAIN;
+const char coreboot_compiler[] = COREBOOT_COMPILER;
+const char coreboot_linker[] = COREBOOT_LINKER;
+const char coreboot_assembler[] = COREBOOT_ASSEMBLER;