* fix typos in device_util.c

* drop double error in malloc.c
* add extra CFLAGS to reduce code size by 10%
* add more build time defines and use them in the LB table.

The LB_TAG_COMPILE_TIME is a partly duplicate of LB_TAG_BUILD,
as LB_TAG_BUILD contains both date and time. I left this in for
compatibility reasons.

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>



git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@268 f3766cd6-281f-0410-b1cd-43a5c92072e9
This commit is contained in:
Stefan Reinauer 2007-03-22 00:36:11 +00:00
commit 8a8f3f4836
4 changed files with 22 additions and 21 deletions

View file

@ -55,7 +55,6 @@ void *malloc(size_t size)
free_mem_ptr);
if (size > freebytes) {
printk(BIOS_ERR, "OUT OF MEMORY for alloc of %d bytes\n", size);
die("OUT OF MEMORY\n");
}