coreboot-kgpe-d16/src/stream/fs
Jens Rottmann 98afd9b75b 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@LiPPERTEmbedded.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3729 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
2008-11-03 23:16:00 +00:00
..
Config.lb added fat support 2004-03-13 04:04:58 +00:00
blockdev.c added spin-up delay 2004-03-17 22:35:52 +00:00
ext2fs.c Fix compile errors if CONFIG_FS_PAYLOAD=1: 2008-11-03 23:16:00 +00:00
fat.c Fix compile errors if CONFIG_FS_PAYLOAD=1: 2008-11-03 23:16:00 +00:00
iso9660.c ppc fixes 2004-03-17 22:02:12 +00:00
vfs.c The ARRAY_SIZE macro is convenient, yet mostly unused. Switch lots of 2008-10-01 12:52:52 +00:00