diff options
author | Ronald G. Minnich <rminnich@gmail.com> | 2004-03-22 04:23:57 +0000 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2004-03-22 04:23:57 +0000 |
commit | 7ebb9e9eb87ffb400aa09430c582b1a51b7fc5c7 (patch) | |
tree | cdc3c5b07662fe2cb4d3cced0bef7d22e71e230c /src/mainboard/ibm | |
parent | 132f2c49003a647c3d063de0efe42a2ed64fc3b3 (diff) |
updates for the E325
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1460 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/ibm')
-rw-r--r-- | src/mainboard/ibm/e325/auto.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mainboard/ibm/e325/auto.c b/src/mainboard/ibm/e325/auto.c index 8b0d216028..2bed6b284c 100644 --- a/src/mainboard/ibm/e325/auto.c +++ b/src/mainboard/ibm/e325/auto.c @@ -161,7 +161,7 @@ static void main(void) #endif }; int needs_reset; - print_emerg("H\n"); + enable_lapic(); init_timer(); if (cpu_init_detected()) { @@ -181,7 +181,7 @@ static void main(void) print_info("ht reset -"); soft_reset(); } - print_emerg("HER\n"); + #if 0 print_pci_devices(); #endif @@ -199,10 +199,10 @@ static void main(void) dump_pci_device(PCI_DEV(0, 0x18, 2)); #endif - print_err("LET'S DO SOME MEMORY\n"); + #if 1 /* Check the first 1M */ - ram_check(0x00000000, 0x000100000); + ram_check(0x00000000, 0x001000000); #endif } |