without this patch coreboot's romstage will come up with
coreboot-4.0" <date>. starting..
The patch removes the "
Not sure what causes this, but I think romcc assumes that "" is a
protected " instead of an empty string
(Better fix might be to fix that)
Acked-by: Stefan Reinauer <[email protected]>
--
coresystems GmbH • Brahmsstr. 16 • D-79104 Freiburg i. Br.
Tel.: +49 761 7668825 • Fax: +49 761 7664613
Email: [email protected] • http://www.coresystems.de/
Registergericht: Amtsgericht Freiburg • HRB 7656
Geschäftsführer: Stefan Reinauer • Ust-IdNr.: DE245674866
Index: Makefile
===================================================================
--- Makefile (revision 5114)
+++ Makefile (working copy)
@@ -254,7 +254,7 @@
printf "#ifndef __BUILD_H\n" >> $(obj)/build.ht
printf "#define __BUILD_H\n\n" >> $(obj)/build.ht
printf "#define COREBOOT_VERSION \"$(KERNELVERSION)\"\n" >>
$(obj)/build.ht
- printf "#define COREBOOT_EXTRA_VERSION \"$(COREBOOT_EXTRA_VERSION)\"\n"
>> $(obj)/build.ht
+ printf "#define COREBOOT_EXTRA_VERSION \"$(COREBOOT_EXTRA_VERSION)
\"\n" >> $(obj)/build.ht
printf "#define COREBOOT_BUILD \"`LANG= date`\"\n" >> $(obj)/build.ht
printf "\n" >> $(obj)/build.ht
printf "#define COREBOOT_COMPILER \"$(shell LANG= $(CC) --version |
head -n1)\"\n" >> $(obj)/build.ht
Index: src/arch/i386/lib/console.c
===================================================================
--- src/arch/i386/lib/console.c (revision 5114)
+++ src/arch/i386/lib/console.c (working copy)
@@ -13,7 +13,6 @@
"\r\n\r\ncoreboot-"
COREBOOT_VERSION
COREBOOT_EXTRA_VERSION
- " "
COREBOOT_BUILD
" starting...\r\n";
print_info(console_test);
--
coreboot mailing list: [email protected]
http://www.coreboot.org/mailman/listinfo/coreboot