diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2007-05-03 08:50:37 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2007-05-03 08:50:37 +0000 |
commit | d436a4b4bc035a3756a57ae8e632e16f7a95b9c9 (patch) | |
tree | e61a55cb4f885f08b52cf04a37c8d7232cdc0ead /targets/tyan | |
parent | 941a6f078ece125a5c116315c82fcd3cb1feaf42 (diff) |
Correct the RAM checking code to _not_ check the range from 640 KB - 1 MB,
as that is not RAM but used for other stuff.
First try at PCI init added to src/mainboard/tyan/s1846/Config.lb.
Use a real payload (FILO) per default now.
Note: this cannot boot a payload, yet, but it gets a lot further now.
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2623 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'targets/tyan')
-rw-r--r-- | targets/tyan/s1846/Config.lb | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/targets/tyan/s1846/Config.lb b/targets/tyan/s1846/Config.lb index 3a8e9107ef..54704a7804 100644 --- a/targets/tyan/s1846/Config.lb +++ b/targets/tyan/s1846/Config.lb @@ -25,14 +25,19 @@ option ROM_SIZE = 256 * 1024 romimage "normal" option USE_FALLBACK_IMAGE = 0 + option ROM_IMAGE_SIZE=0x0e000 option LINUXBIOS_EXTRA_VERSION = ".0Normal" - payload /etc/hosts # TODO + payload /tmp/filo.elf + # payload /tmp/memtest end romimage "fallback" option USE_FALLBACK_IMAGE = 1 + option ROM_IMAGE_SIZE=0x0e000 option LINUXBIOS_EXTRA_VERSION = ".0Fallback" - payload /etc/hosts # TODO + payload /tmp/filo.elf + # payload /tmp/memtest end buildrom ./linuxbios.rom ROM_SIZE "normal" "fallback" +# buildrom ./linuxbios.rom ROM_SIZE "fallback" |