Changeset 3729

Show
Ignore:
Timestamp:
11/04/08 00:16:00 (2 months ago)
Author:
stepan
Message:

Fix compile errors if CONFIG_FS_PAYLOAD=1:

Compile error in filo.c if AUTOBOOT_DELAY=0. Replace
#ifndef AUTOBOOT_DELAY
with
#if !AUTOBOOT_DELAY
which should work for both the #undef and the =0 case.

In ext2fs.c, fat.c
#if ARCH == 'i386'
results in a compile warning: "multi-character character constant" and
the condition ARCH == 'i386' is mis-evaluated as FALSE, eventually
choking the assembler on a PPC instruction. Change it to
#ifdef i386

Signed-off-by: Jens Rottmann <JRottmann@…>
Acked-by: Stefan Reinauer <stepan@…>

Location:
trunk/coreboot-v2/src
Files:
3 modified

Legend:

Unmodified
Added
Removed