coreboot-kgpe-d16/src
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
..
arch
boot Fix compile errors if CONFIG_FS_PAYLOAD=1: 2008-11-03 23:16:00 +00:00
config
console
cpu Update K8 FID/VID setup. Add support for 100MHz FIDs (revG). 2008-11-03 21:39:03 +00:00
devices
drivers
include Revert i945/ICH7 PCI IDs to be hard-coded numbers instead of #defines. 2008-10-31 18:41:09 +00:00
lib
mainboard Set asus/a8v-3_se to use printk in CAR. (trivial) 2008-11-03 22:46:27 +00:00
northbridge Revert i945/ICH7 PCI IDs to be hard-coded numbers instead of #defines. 2008-10-31 18:41:09 +00:00
pc80
pmc/altimus/mpc7410
ram
sdram
southbridge Trim down the list of southbridges supported by the i82801xx driver 2008-11-02 14:33:51 +00:00
stream Fix compile errors if CONFIG_FS_PAYLOAD=1: 2008-11-03 23:16:00 +00:00
superio Add the missing I/O resources for IT8712F GPIOs. (E.g. some LiPPERT 2008-11-03 22:58:56 +00:00