This, ladies and gentlement, is commit #4000.
authorStefan Reinauer <stepan@coresystems.de>
Fri, 13 Mar 2009 15:42:27 +0000 (15:42 +0000)
committerStefan Reinauer <stepan@openbios.org>
Fri, 13 Mar 2009 15:42:27 +0000 (15:42 +0000)
Use the (almost) same strict CFLAGS in v2 that we use on v3. And fix a few
include files and missing prototypes. Also, fix up the Config-abuild.lb files
to properly work for cross compiling.

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4000 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

44 files changed:
src/arch/i386/include/arch/acpi.h
src/arch/i386/include/arch/pci_ops.h
src/config/Config.lb
src/config/Options.lb
src/drivers/generic/debug/debug_dev.c
src/include/cpu/x86/smm.h
src/include/device/device.h
src/include/device/pnp.h
src/mainboard/amd/serengeti_cheetah_fam10/cache_as_ram_auto.c
src/mainboard/dell/s1850/chip.h
src/mainboard/intel/jarrell/chip.h
src/mainboard/intel/mtarvon/chip.h
src/mainboard/intel/truxton/chip.h
src/mainboard/intel/xe7501devkit/reset.c
src/mainboard/kontron/986lcd-m/chip.h
src/mainboard/supermicro/x6dai_g/chip.h
src/mainboard/supermicro/x6dai_g/mainboard.c
src/mainboard/supermicro/x6dhe_g/chip.h
src/mainboard/supermicro/x6dhe_g/mainboard.c
src/mainboard/supermicro/x6dhe_g2/chip.h
src/mainboard/supermicro/x6dhe_g2/mainboard.c
src/mainboard/supermicro/x6dhr_ig/chip.h
src/mainboard/supermicro/x6dhr_ig2/chip.h
src/mainboard/tyan/s2735/reset.c
src/mainboard/via/epia-m/Options.lb
src/mainboard/via/epia-m/mainboard.c
src/mainboard/via/epia-m/vgachip.h
src/northbridge/amd/amdfam10/reset_test.c
src/northbridge/amd/amdk8/northbridge.c
src/northbridge/intel/e7501/northbridge.c
src/northbridge/intel/i82830/northbridge.c
src/northbridge/intel/i855pm/northbridge.c
src/northbridge/via/vt8601/northbridge.c
src/northbridge/via/vt8623/northbridge.h
src/southbridge/intel/pxhd/chip.h
src/southbridge/nvidia/mcp55/mcp55_early_setup_car.c
targets/digitallogic/msm586seg/Config-abuild.lb
targets/gigabyte/ga_2761gxdk/Config-abuild.lb
targets/iei/juki-511p/Config-abuild.lb
targets/msi/ms7260/Config-abuild.lb
targets/rca/rm4100/Config-abuild.lb
targets/technologic/ts5300/Config-abuild.lb
targets/thomson/ip1000/Config-abuild.lb
targets/via/epia-m/Config-abuild.lb

index 4d2cedd10f2640f82ce639501e926b9116b58a3b..1fccd62a7bd4980b866ca6343a92906712778353 100644 (file)
@@ -5,9 +5,7 @@
  * (C) 2004 SUSE LINUX AG
  *
  * The ACPI table structs are based on the Linux kernel sources.
- * 
- */
-/* ACPI FADT & FACS added by Nick Barker <nick.barker9@btinternet.com>
+ * ACPI FADT & FACS added by Nick Barker <nick.barker9@btinternet.com>
  * those parts (C) 2004 Nick Barker
  */
 
@@ -331,6 +329,8 @@ void acpi_create_facs(acpi_facs_t *facs);
 void acpi_write_rsdt(acpi_rsdt_t *rsdt);
 void acpi_write_rsdp(acpi_rsdp_t *rsdp, acpi_rsdt_t *rsdt);
 
+unsigned long acpi_add_ssdt_pstates(acpi_rsdt_t *rsdt, unsigned long current);
+
 #define ACPI_WRITE_MADT_IOAPIC(dev,id)                 \
 do {                                                    \
         struct resource *res;                           \
index 5972df1d721fd95d93e98aa5b93b9c90e7cb623a..04b93196aa6c0182a8eae31578757bf8d3aa544a 100644 (file)
@@ -1,11 +1,11 @@
 #ifndef ARCH_I386_PCI_OPS_H
 #define ARCH_I386_PCI_OPS_H
 
-const struct pci_bus_operations pci_cf8_conf1;
-const struct pci_bus_operations pci_cf8_conf2;
+extern const struct pci_bus_operations pci_cf8_conf1;
+extern const struct pci_bus_operations pci_cf8_conf2;
 
 #if MMCONF_SUPPORT==1
-const struct pci_bus_operations pci_ops_mmconf;
+extern const struct pci_bus_operations pci_ops_mmconf;
 #endif
 
 void pci_set_method(device_t dev);
index 5a82b41f17a1dff138169790a6a8f379dea2ae59..ae01383030c56169b0afd9f786404c575ab1ed5e 100644 (file)
@@ -10,7 +10,7 @@ makedefine GCC ?= $(CC)
 makedefine GCC_INC_DIR := $(shell LC_ALL=C $(GCC) -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp")
 
 makedefine CPPFLAGS := -I$(TOP)/src/include -I$(TOP)/src/arch/$(ARCH)/include -I$(GCC_INC_DIR) $(CPUFLAGS)
-makedefine CFLAGS := $(CPU_OPT) $(DISTRO_CFLAGS) $(CPPFLAGS) -Os -nostdinc -nostdlib -fno-builtin  -Wall
+makedefine CFLAGS := $(CPU_OPT) $(DISTRO_CFLAGS) $(CPPFLAGS) -Os -nostdinc -nostdlib -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -Werror-implicit-function-declaration -Wstrict-aliasing -Wshadow -fno-common -ffreestanding -fno-builtin -fomit-frame-pointer
 
 if ASSEMBLER_DEBUG
 makedefine DEBUG_CFLAGS := -g -dA -fverbose-asm
index 1ad1ef8ca43d11fb55d8e717763ce363aeec2640..88f57e2879b358c42383d847fa5f2fa91b97f508 100644 (file)
@@ -146,7 +146,7 @@ define COREBOOT_COMPILER
        comment "Build compiler"
 end
 define COREBOOT_LINKER
-       default "$(shell  $(CC) -Wl,--version 2>&1 | grep version | tail -n 1)"
+       default "$(shell  $(CC) -Wl,--version 2>&1 | grep \" ld\")"
        export always
        format "\"%s\""
        comment "Build linker"
index 7f17c9598c45bcbd6e511530336eff3406c76228..210600c59fac6069748daeccf01014f57a883579 100644 (file)
@@ -5,6 +5,8 @@
 #include <device/pci_ids.h>
 #include <device/pci_ops.h>
 #include <cpu/x86/msr.h>
+#include <part/hard_reset.h>
+#include <delay.h>
 #include "chip.h"
 
 static void print_pci_regs(struct device *dev)
index 3122be1bcdf39e292bd6e85764fa2b0a4430cfd1..c4a57470b2d7237b8719f178076debb57fb7271a 100644 (file)
@@ -251,6 +251,9 @@ typedef struct {
 
 
 /* SMI handler function prototypes */
+void io_trap_handler(int smif);
 int southbridge_io_trap_handler(int smif);
 int mainboard_io_trap_handler(int smif);
 
+void southbridge_smi_handler(unsigned int node, smm_state_save_area_t *state_save);
+
index 284c09601671958e5d02d7c075ccc5bc0bb6301e..4109c00c112b7c89023d67fdbb8f880ad8457af4 100644 (file)
@@ -102,26 +102,26 @@ extern struct device      *all_devices;   /* list of all devices */
 
 
 /* Generic device interface functions */
-extern device_t alloc_dev(struct bus *parent, struct device_path *path);
-extern void dev_enumerate(void);
-extern void dev_configure(void);
-extern void dev_enable(void);
-extern void dev_initialize(void);
-extern void dev_optimize(void);
+device_t alloc_dev(struct bus *parent, struct device_path *path);
+void dev_enumerate(void);
+void dev_configure(void);
+void dev_enable(void);
+void dev_initialize(void);
+void dev_optimize(void);
 
 /* Generic device helper functions */
-extern int reset_bus(struct bus *bus);
-extern unsigned int scan_bus(struct device *bus, unsigned int max);
-extern void compute_allocate_resource(struct bus *bus, struct resource *bridge,
+int reset_bus(struct bus *bus);
+unsigned int scan_bus(struct device *bus, unsigned int max);
+void compute_allocate_resource(struct bus *bus, struct resource *bridge,
        unsigned long type_mask, unsigned long type);
-extern void assign_resources(struct bus *bus);
-extern void enable_resources(struct device *dev);
-extern void enumerate_static_device(void);
-extern void enumerate_static_devices(void);
-extern const char *dev_path(device_t dev);
+void assign_resources(struct bus *bus);
+void enable_resources(struct device *dev);
+void enumerate_static_device(void);
+void enumerate_static_devices(void);
+const char *dev_path(device_t dev);
 const char *bus_path(struct bus *bus);
-extern void dev_set_enabled(device_t dev, int enable);
-extern void disable_children(struct bus *bus);
+void dev_set_enabled(device_t dev, int enable);
+void disable_children(struct bus *bus);
 
 /* Helper functions */
 device_t find_dev_path(struct bus *parent, struct device_path *path);
@@ -138,12 +138,12 @@ device_t dev_find_slot_on_smbus (unsigned int bus, unsigned int addr);
 #define DEVICE_IO_ALIGN 16 
 #define DEVICE_MEM_ALIGN 4096
 
-struct device_operations default_dev_ops_root;
-extern void root_dev_read_resources(device_t dev);
-extern void root_dev_set_resources(device_t dev);
-extern unsigned int scan_static_bus(device_t bus, unsigned int max);
-extern void enable_childrens_resources(device_t dev);
-extern void root_dev_enable_resources(device_t dev);
-extern unsigned int root_dev_scan_bus(device_t root, unsigned int max);
-extern void root_dev_init(device_t dev);
+extern struct device_operations default_dev_ops_root;
+void root_dev_read_resources(device_t dev);
+void root_dev_set_resources(device_t dev);
+unsigned int scan_static_bus(device_t bus, unsigned int max);
+void enable_childrens_resources(device_t dev);
+void root_dev_enable_resources(device_t dev);
+unsigned int root_dev_scan_bus(device_t root, unsigned int max);
+void root_dev_init(device_t dev);
 #endif /* DEVICE_H */
index 757b240c323bad2a8dd0732af476ecfc49aada1b..4cf6ff47fb29e03d63d1e84aaf18d568a33becac 100644 (file)
@@ -21,7 +21,7 @@ void pnp_set_resources(device_t dev);
 void pnp_enable_resources(device_t dev);
 void pnp_enable(device_t dev);
 
-struct device_operations pnp_ops;
+extern struct device_operations pnp_ops;
 
 /* PNP helper operations */
 
index 26c624589c8d3869f2b9d50d5832c077317622d7..d7b2379c249fd328e03998e059eb55e2b061c37c 100644 (file)
@@ -69,9 +69,13 @@ static void post_code(u8 value) {
 #include "northbridge/amd/amdfam10/amdfam10.h"
 #endif
 
-
 #include "cpu/x86/lapic/boot_cpu.c"
 #include "northbridge/amd/amdfam10/reset_test.c"
+
+#include <console/loglevel.h>
+void die(const char *msg);
+int do_printk(int msg_level, const char *fmt, ...) __attribute__((format(printf, 2, 3)));
+#define printk_emerg(fmt, arg...)   do_printk(BIOS_EMERG   ,fmt, ##arg)
 #include "cpu/x86/bist.h"
 
 
index b6e23b26882e2aeb976b0f94d994a5ff602cdd18..e168812d0ea6ace8f58b3efe41283d5d29029fd5 100644 (file)
@@ -1,4 +1,4 @@
-struct chip_operations mainboard_ops;
+extern struct chip_operations mainboard_ops;
 
 struct mainboard_config {
        int nothing;
index b6e23b26882e2aeb976b0f94d994a5ff602cdd18..e168812d0ea6ace8f58b3efe41283d5d29029fd5 100644 (file)
@@ -1,4 +1,4 @@
-struct chip_operations mainboard_ops;
+extern struct chip_operations mainboard_ops;
 
 struct mainboard_config {
        int nothing;
index 4921b7bfcc0ea17489c4228c9745ccecf0a491cf..71c6c125d0e01bbdba34376e37ff69ea4b9d46d0 100644 (file)
@@ -18,7 +18,7 @@
  *
  */
 
-struct chip_operations mainboard_ops;
+extern struct chip_operations mainboard_ops;
 
 struct mainboard_config {
        int nothing;
index 4921b7bfcc0ea17489c4228c9745ccecf0a491cf..71c6c125d0e01bbdba34376e37ff69ea4b9d46d0 100644 (file)
@@ -18,7 +18,7 @@
  *
  */
 
-struct chip_operations mainboard_ops;
+extern struct chip_operations mainboard_ops;
 
 struct mainboard_config {
        int nothing;
index 349a2bfd29f9bc6420f58c3b47d5cd3c83c421ee..8feaac64e50dff9f998265627ad56c471d292b7d 100644 (file)
@@ -1,3 +1,4 @@
+void i82801ca_hard_reset(void);
 
 void hard_reset(void)
 {
index 08a66b677e3ac7b7e983711ca63b9242986dc0b9..e1bf83b29316695d8ab6ee8a4b3e7980989f78b9 100644 (file)
@@ -19,7 +19,7 @@
  * MA 02110-1301 USA
  */
 
-struct chip_operations mainboard_ops;
+extern struct chip_operations mainboard_ops;
 struct mainboard_config {
        int nothing;
 };
index b6e23b26882e2aeb976b0f94d994a5ff602cdd18..e168812d0ea6ace8f58b3efe41283d5d29029fd5 100644 (file)
@@ -1,4 +1,4 @@
-struct chip_operations mainboard_ops;
+extern struct chip_operations mainboard_ops;
 
 struct mainboard_config {
        int nothing;
index b32dbd560efe92887ff0cafda5871e6b4c3b53f9..1db8cd4b4b2dd69e46b39a2c99598a42bee427e8 100644 (file)
@@ -1,7 +1,7 @@
 #include <device/device.h>
 #include "chip.h"
 
-struct chip_operations supermicro_x6dai_g_ops = {
+struct chip_operations mainboard_ops = {
        CHIP_NAME("Supermicro X6DAi-G Mainboard")
 };
 
index b6e23b26882e2aeb976b0f94d994a5ff602cdd18..e168812d0ea6ace8f58b3efe41283d5d29029fd5 100644 (file)
@@ -1,4 +1,4 @@
-struct chip_operations mainboard_ops;
+extern struct chip_operations mainboard_ops;
 
 struct mainboard_config {
        int nothing;
index 343c9bb7da7c2b97fcf11b8d0ccc896b05316366..a242dddcb30ed60c273dfeba3694099269cab97e 100644 (file)
@@ -1,7 +1,7 @@
 #include <device/device.h>
 #include "chip.h"
 
-struct chip_operations supermicro_x6dhe_g_ops = {
+struct chip_operations mainboard_ops = {
     CHIP_NAME("Supermicro X6DHE-G Mainboard")
 };
 
index b6e23b26882e2aeb976b0f94d994a5ff602cdd18..e168812d0ea6ace8f58b3efe41283d5d29029fd5 100644 (file)
@@ -1,4 +1,4 @@
-struct chip_operations mainboard_ops;
+extern struct chip_operations mainboard_ops;
 
 struct mainboard_config {
        int nothing;
index 856dc8f53db0ea89441c35477dce8709b6d1a2ff..fdb67cc983d0ef2ce9583cc940d49667fba5fad9 100644 (file)
@@ -1,7 +1,7 @@
 #include <device/device.h>
 #include "chip.h"
 
-struct chip_operations supermicro_x6dhe_g2_ops = {
+struct chip_operations mainboard_ops = {
     CHIP_NAME("Supermicro X6DHE-G2 Mainboard")
 };
 
index b6e23b26882e2aeb976b0f94d994a5ff602cdd18..e168812d0ea6ace8f58b3efe41283d5d29029fd5 100644 (file)
@@ -1,4 +1,4 @@
-struct chip_operations mainboard_ops;
+extern struct chip_operations mainboard_ops;
 
 struct mainboard_config {
        int nothing;
index b6e23b26882e2aeb976b0f94d994a5ff602cdd18..e168812d0ea6ace8f58b3efe41283d5d29029fd5 100644 (file)
@@ -1,4 +1,4 @@
-struct chip_operations mainboard_ops;
+extern struct chip_operations mainboard_ops;
 
 struct mainboard_config {
        int nothing;
index 3cc3d54988ebb5e2d7c51748f2cc7402144c98da..4b2ab0daae7b3d498a70982fba7269324ae41215 100644 (file)
@@ -1,3 +1,4 @@
+void i82801er_hard_reset(void);
 
 void hard_reset(void)
 {
index 575cc5eeb38995d93faae5fdc11ab60b479896f0..54daa917af80ec51899fa26d7981489fde4a3344 100644 (file)
@@ -137,5 +137,9 @@ default HOSTCC="gcc"
 ##
 default CONFIG_MAX_PCI_BUSES = 5        
 
+default  MAXIMUM_CONSOLE_LOGLEVEL=8
+default  DEFAULT_CONSOLE_LOGLEVEL=8
+default  CONFIG_CONSOLE_SERIAL8250=1
+
 end
 
index 64b7c6d2328409f5fc28ccc21e3a874c5c8bf868..bec7d6a2f463e205494ee3fbe78fbff3c69db40f 100644 (file)
@@ -5,6 +5,7 @@
 #include <device/pci_ops.h>
 #include <arch/io.h>
 #include "chip.h"
+#include "vgachip.h"
 
 void vga_enable_console();
 
index d43788cd667d5d6bbfc507cd75847433d73dea51..c623c8969a31f3d40556cf29c0908b01cc41d649 100644 (file)
@@ -7,4 +7,9 @@ struct pc80_vgabios_config {
        int nothing;
 };
 
+void vga_enable_console(void);
+void do_vgabios(void);
+void setup_realmode_idt(void);
+void write_protect_vgabios(void);
+
 #endif /* _PC80_VGABIOS */
index bc9fe6cb439f7574e30b4b0da6dd496f1a2b25d3..389d8e60a9afef654b001a98207f8b31165c10fa 100644 (file)
@@ -19,6 +19,7 @@
 
 #include <stdint.h>
 #include <cpu/x86/lapic.h>
+#include "amdfam10.h"
 
 #define NODE_ID                0x60
 #define HT_INIT_CONTROL        0x6c
index cbb921d2932a115dc024ab5051eefc1b501dbc2a..c2c89d1ffb8d35737e1789a6e9189494ba40632b 100644 (file)
@@ -19,8 +19,8 @@
 
 #include <cpu/x86/lapic.h>
 
-#if CONFIG_LOGICAL_CPUS==1
 #include <cpu/amd/dualcore.h>
+#if CONFIG_LOGICAL_CPUS==1
 #include <pc80/mc146818rtc.h>
 #endif
 
@@ -30,9 +30,7 @@
 
 #include "amdk8.h"
 
-#if HW_MEM_HOLE_SIZEK != 0
 #include <cpu/amd/model_fxx_rev.h>
-#endif
 
 #include <cpu/amd/amdk8_sysconf.h>
 
index 602913485d941ae7bb9d29ea44d879c78b7ed26e..b1d553aab18ee2c204a3f28a3cfaac490aa6a98d 100644 (file)
@@ -3,6 +3,7 @@
 #include <stdint.h>
 #include <device/device.h>
 #include <device/pci.h>
+#include <cpu/cpu.h>
 #include <stdlib.h>
 #include <string.h>
 #include <bitops.h>
index bd2690a3598c1d5446affb7185a70ef7111ad7d3..689bf19bc2dfcca4c814488b8b3c3e76d27b3ede 100644 (file)
@@ -24,6 +24,7 @@
 #include <device/device.h>
 #include <device/pci.h>
 #include <device/pci_ids.h>
+#include <cpu/cpu.h>
 #include <stdlib.h>
 #include <string.h>
 #include <bitops.h>
index 85adf4f417836b88051ce128fb147d68c6fc73a2..60648542aebe203e58fa8b2c4586fd5519a78d8d 100644 (file)
@@ -4,6 +4,7 @@
 #include <device/device.h>
 #include <device/pci.h>
 #include <device/pci_ids.h>
+#include <cpu/cpu.h>
 #include <stdlib.h>
 #include <string.h>
 #include <bitops.h>
index 36a118ca713694379a7122daeb0c6097e1654464..5347017ddf40dc69a70da57d1d9de50fb6102595 100644 (file)
@@ -5,6 +5,7 @@
 #include <device/pci.h>
 #include <device/pci_ids.h>
 #include <device/hypertransport.h>
+#include <cpu/cpu.h>
 #include <stdlib.h>
 #include <string.h>
 #include <bitops.h>
index ef63ebea787679edd0e071f911873209b24f4394..f589860cd552b5f4f53879a9546688985f67a083 100644 (file)
@@ -1,6 +1,12 @@
 #ifndef NORTHBRIDGE_VIA_VT8623_H
 #define NORTHBRIDGE_VIA_VT8623_H
 
-extern unsigned int vt8623_scan_root_bus(device_t root, unsigned int max);
+unsigned int vt8623_scan_root_bus(device_t root, unsigned int max);
+
+void vga_enable_console(void);
+void do_vgabios(void);
+void setup_realmode_idt(void);
+void write_protect_vgabios(void);
+
 
 #endif /* NORTHBRIDGE_VIA_VT8623_H */
index 516f1df7d2b8082dc66c6a0b502ebecf96b09965..5aedb7777651a25b0ad9d8160ee19645492e9523 100644 (file)
@@ -2,4 +2,5 @@ struct southbridge_intel_pxhd_config
 {
        /* nothing */
 };
-struct chip_operations southbridge_intel_pxhd_ops;
+
+extern struct chip_operations southbridge_intel_pxhd_ops;
index 64ec785781be7b3a59651f0310700e0361b4e713..cee5f25a2447079ebbf7f80e11da291dfb7f8d3e 100644 (file)
@@ -19,6 +19,8 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
  */
 
+static int set_ht_link_buffer_counts_chain(uint8_t ht_c_num, unsigned vendorid, unsigned val);
+
 static int set_ht_link_mcp55(uint8_t ht_c_num)
 {
        unsigned vendorid = 0x10de;
index 285adc04b6b8d93bdcd027c10c5d4b6080a9b282..46bad0336226238dc3880d8e4c505434cd27b483 100644 (file)
@@ -1,24 +1,16 @@
-target digitallogic_msm586seg
-mainboard digitallogic/msm586seg
+target VENDOR_MAINBOARD
+mainboard VENDOR/MAINBOARD
 
-
-
-option DEFAULT_CONSOLE_LOGLEVEL=9
-option MAXIMUM_CONSOLE_LOGLEVEL=9
-option CONFIG_COMPRESS=0
+option CC="CROSSCC"
+option CROSS_COMPILE="CROSS_PREFIX"
+option HOSTCC="CROSS_HOSTCC"
 
 __COMPRESSION__
 
-option CONFIG_CONSOLE_VGA=1
-
 romimage "fallback" 
        option FALLBACK_SIZE = 256 * 1024
-#      option ROM_SIZE=512*1024
-#      option ROM_SECTION_SIZE=512*1024
        option USE_FALLBACK_IMAGE=1
-#      option ROM_IMAGE_SIZE=32 * 1024 # 0x8000
-       option ROM_IMAGE_SIZE=128 * 1024 # 0x10000
-#      option ROM_IMAGE_SIZE=512 * 1024 # 0x10000
+       option ROM_IMAGE_SIZE= 128 * 1024
        option COREBOOT_EXTRA_VERSION=".0Fallback"
        payload __PAYLOAD__
 end
index 463503be69540a679937c31556bcaa484a7b9504..0c102bd5b4cb8ff336dcb9cbde7894aa9c0117bc 100644 (file)
 ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 ##
 
-target gigabyte_ga_2761gxdk
-mainboard gigabyte/ga_2761gxdk
+
+target VENDOR_MAINBOARD
+mainboard VENDOR/MAINBOARD
+
+option CC="CROSSCC"
+option CROSS_COMPILE="CROSS_PREFIX"
+option HOSTCC="CROSS_HOSTCC"
 
 __COMPRESSION__
 
index c7602b3b2a78c8f031a646910d152f1269942b63..0350f1f4aaaeb76130c86e20378499e4f24e3211 100644 (file)
@@ -1,7 +1,9 @@
-# abuild config file for JUKI-511P 
+target VENDOR_MAINBOARD
+mainboard VENDOR/MAINBOARD
 
-target iei_juki-511p
-mainboard iei/juki-511p
+option CC="CROSSCC"
+option CROSS_COMPILE="CROSS_PREFIX"
+option HOSTCC="CROSS_HOSTCC"
 
 __COMPRESSION__
 
index c0f6f142a4e81438f5dd662bd66a1192e077e8c3..552e01ef9d7983ebf035ce4b8c7ee69a53da3445 100644 (file)
 ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 ##
 
-target msi_ms7260
-mainboard msi/ms7260
+target VENDOR_MAINBOARD
+mainboard VENDOR/MAINBOARD
+
+option CC="CROSSCC"
+option CROSS_COMPILE="CROSS_PREFIX"
+option HOSTCC="CROSS_HOSTCC"
 
 __COMPRESSION__
 
index b4f22e5a278b73dae374d1965954a3a5dedc1561..41df077180e438a901e5b5005dd897435b4a1cd8 100644 (file)
 ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 ##
 
-target rca_rm4100
-mainboard rca/rm4100
+target VENDOR_MAINBOARD
+mainboard VENDOR/MAINBOARD
+
+option CC="CROSSCC"
+option CROSS_COMPILE="CROSS_PREFIX"
+option HOSTCC="CROSS_HOSTCC"
+
+__COMPRESSION__
 
 romimage "fallback"
        option USE_FALLBACK_IMAGE = 1
index 7b0f8fc84134964bcb07efa5977018c0226a98c8..22c86b11425cf8dfd889dc42f161387fb5c490bc 100644 (file)
@@ -1,20 +1,17 @@
-target technologic_ts5300
-mainboard technologic/ts5300
+target VENDOR_MAINBOARD
+mainboard VENDOR/MAINBOARD
 
-option DEFAULT_CONSOLE_LOGLEVEL=9
-option MAXIMUM_CONSOLE_LOGLEVEL=9
-option CONFIG_COMPRESS=0
+option CC="CROSSCC"
+option CROSS_COMPILE="CROSS_PREFIX"
+option HOSTCC="CROSS_HOSTCC"
 
 __COMPRESSION__
 
 romimage "fallback" 
        option FALLBACK_SIZE = 256 * 1024
-#      option ROM_SIZE=512*1024
-#      option ROM_SECTION_SIZE=512*1024
        option USE_FALLBACK_IMAGE=1
-#      option ROM_IMAGE_SIZE=32 * 1024 # 0x8000
        option ROM_IMAGE_SIZE=128 * 1024 # 0x10000
-       option COREBOOT_EXTRA_VERSION=".0Fallback"
+       option COREBOOT_EXTRA_VERSION=".0-Fallback"
        payload __PAYLOAD__
 end
 
index 8f9ffb80d01f67740ebd86e4caf9773792ae670a..501bc2c0a6549a57dba87e32e579577c1e98e8ae 100644 (file)
 ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 ##
 
-target thomson_ip1000
-mainboard thomson/ip1000
+target VENDOR_MAINBOARD
+mainboard VENDOR/MAINBOARD
+
+option CC="CROSSCC"
+option CROSS_COMPILE="CROSS_PREFIX"
+option HOSTCC="CROSS_HOSTCC"
+
+__COMPRESSION__
 
 romimage "fallback"
        option USE_FALLBACK_IMAGE = 1
index 7df740905c4395a8dd06ae18bc9291d89650d364..dd3336782ba754ab0c67372329ba44eb2322d826 100644 (file)
@@ -1,32 +1,14 @@
-# abuild config file for EPIA-M
+target VENDOR_MAINBOARD
+mainboard VENDOR/MAINBOARD
 
-target via_epia-m
-mainboard via/epia-m
-
-option  MAXIMUM_CONSOLE_LOGLEVEL=8
-option  DEFAULT_CONSOLE_LOGLEVEL=8
-option  CONFIG_CONSOLE_SERIAL8250=1
+option CC="CROSSCC"
+option CROSS_COMPILE="CROSS_PREFIX"
+option HOSTCC="CROSS_HOSTCC"
 
 __COMPRESSION__
 
 option ROM_SIZE=256*1024
 
-option HAVE_OPTION_TABLE=1
-option CONFIG_ROM_PAYLOAD=1
-option HAVE_FALLBACK_BOOT=1
-
-###
-### Compute the location and size of where this firmware image
-### (coreboot plus bootloader) will live in the boot rom chip.
-###
-option FALLBACK_SIZE=131072
-
-## Coreboot C code runs at this location in RAM
-option _RAMBASE=0x00004000
-
-#
-# Via EPIA M
-#
 romimage "normal"
        option USE_FALLBACK_IMAGE=0
        option ROM_IMAGE_SIZE=64*1024