Comments
Patch
===================================================================
@@ -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
===================================================================
@@ -13,7 +13,6 @@
"\r\n\r\ncoreboot-"
COREBOOT_VERSION
COREBOOT_EXTRA_VERSION
- " "
COREBOOT_BUILD
" starting...\r\n";
print_info(console_test);
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 <stepan@coresystems.de>