Trivial patch:
* Drop empty file (0 bytes) northbridge/amd/amdk8/cpu_rev.c and references to it. * move config option decision to preprocessor instead of code since config options can not change during runtime * slightly more verbose output in built_opt_tbl.c Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2586 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
03cafbfdfe
commit
ba43064d32
|
@ -365,7 +365,8 @@ unsigned long write_linuxbios_table(
|
|||
low_table_end = (unsigned long)head;
|
||||
}
|
||||
|
||||
if (HAVE_OPTION_TABLE == 1) {
|
||||
#if (HAVE_OPTION_TABLE == 1)
|
||||
{
|
||||
struct lb_record *rec_dest, *rec_src;
|
||||
/* Write the option config table... */
|
||||
rec_dest = lb_new_record(head);
|
||||
|
@ -374,6 +375,7 @@ unsigned long write_linuxbios_table(
|
|||
/* Create cmos checksum entry in linuxbios table */
|
||||
lb_cmos_checksum(head);
|
||||
}
|
||||
#endif
|
||||
/* Record where RAM is located */
|
||||
mem = build_lb_mem(head);
|
||||
|
||||
|
|
|
@ -20,7 +20,6 @@
|
|||
#include "cpu/x86/lapic/boot_cpu.c"
|
||||
#include "northbridge/amd/amdk8/reset_test.c"
|
||||
#include "northbridge/amd/amdk8/debug.c"
|
||||
#include "northbridge/amd/amdk8/cpu_rev.c"
|
||||
#include "superio/winbond/w83627hf/w83627hf_early_serial.c"
|
||||
#include "cpu/amd/mtrr/amd_earlymtrr.c"
|
||||
#include "cpu/x86/bist.h"
|
||||
|
|
|
@ -19,7 +19,6 @@
|
|||
#include "northbridge/amd/amdk8/reset_test.c"
|
||||
#include "northbridge/amd/amdk8/debug.c"
|
||||
#include "northbridge/amd/amdk8/incoherent_ht.c"
|
||||
#include "northbridge/amd/amdk8/cpu_rev.c"
|
||||
#include "superio/winbond/w83627hf/w83627hf_early_serial.c"
|
||||
#include "cpu/amd/mtrr/amd_earlymtrr.c"
|
||||
#include "cpu/x86/bist.h"
|
||||
|
|
|
@ -12,7 +12,6 @@
|
|||
#include "arch/i386/lib/console.c"
|
||||
#include "ram/ramtest.c"
|
||||
|
||||
#include "northbridge/amd/amdk8/cpu_rev.c"
|
||||
#define K8_HT_FREQ_1G_SUPPORT 0
|
||||
#include "northbridge/amd/amdk8/incoherent_ht.c"
|
||||
#include "southbridge/nvidia/ck804/ck804_early_smbus.c"
|
||||
|
|
|
@ -12,7 +12,6 @@
|
|||
#include "arch/i386/lib/console.c"
|
||||
#include "ram/ramtest.c"
|
||||
|
||||
#include "northbridge/amd/amdk8/cpu_rev.c"
|
||||
#define K8_HT_FREQ_1G_SUPPORT 1
|
||||
#include "northbridge/amd/amdk8/incoherent_ht.c"
|
||||
#include "southbridge/nvidia/ck804/ck804_early_smbus.c"
|
||||
|
|
|
@ -13,7 +13,6 @@
|
|||
#include "arch/i386/lib/console.c"
|
||||
#include "ram/ramtest.c"
|
||||
|
||||
#include "northbridge/amd/amdk8/cpu_rev.c"
|
||||
//#define K8_HT_FREQ_1G_SUPPORT 1
|
||||
#include "northbridge/amd/amdk8/incoherent_ht.c"
|
||||
#include "southbridge/nvidia/ck804/ck804_early_smbus.c"
|
||||
|
|
|
@ -462,7 +462,8 @@ int main(int argc, char **argv)
|
|||
exit(1);
|
||||
}
|
||||
if ((cs->range_end/8) != LB_CKS_RANGE_END) {
|
||||
fprintf(stderr, "Error - Range end does not match define in line\n%s\n", line);
|
||||
fprintf(stderr, "Error - Range end (%d) does not match define (%d) in line\n%s\n",
|
||||
(cs->range_end/8), LB_CKS_RANGE_END, line);
|
||||
exit(1);
|
||||
}
|
||||
if ((cs->location/8) != LB_CKS_LOC) {
|
||||
|
|
Loading…
Reference in New Issue