From 68fed5f8b21178aae30976b0233940b9a936689e Mon Sep 17 00:00:00 2001 From: Steven James Date: Sun, 23 Feb 2003 21:15:24 +0000 Subject: [PATCH] Shrunk ROMSIZE enough to get etherboot into top block with fallback image. --- src/mainboard/intel/Clearwater533/Config | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/mainboard/intel/Clearwater533/Config b/src/mainboard/intel/Clearwater533/Config index bf23fc5a22..c16ac54a10 100644 --- a/src/mainboard/intel/Clearwater533/Config +++ b/src/mainboard/intel/Clearwater533/Config @@ -232,7 +232,7 @@ expr USE_NORMAL_IMAGE=!USE_FALLBACK_IMAGE option ROM_SIZE=1048576 ## ROM_IMAGE_SIZE is the amount of space to allow linuxBIOS to occupy. -option ROM_IMAGE_SIZE=65536 +option ROM_IMAGE_SIZE=44288 ## LinuxBIOS C code runs at this location in RAM option _RAMBASE=0x00008000 @@ -278,7 +278,9 @@ expr ROM_SECTION_OFFSET=(USE_FALLBACK_IMAGE*(ROM_SIZE-65536))+(USE_NORMAL_IMAGE* ## The linuxBIOS bootloader. ## #expr ZKERNEL_START =(0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1) -expr ZKERNEL_START = 0xfff00000 + (USE_NORMAL_IMAGE * 0x10000) +#expr ZKERNEL_START = 0xfff00000 + (USE_NORMAL_IMAGE * 0x10000) +expr ZKERNEL_START = 0xfff00000 + (USE_FALLBACK_IMAGE * 0xf0000 ) + expr PAYLOAD_SIZE =ROM_SECTION_SIZE - ROM_IMAGE_SIZE @@ -286,7 +288,8 @@ expr PAYLOAD_SIZE =ROM_SECTION_SIZE - ROM_IMAGE_SIZE ## Compute where this copy of linuxBIOS will start in the boot rom ## #expr _ROMBASE =ZKERNEL_START + PAYLOAD_SIZE -expr _ROMBASE = 0xffff0000 - (USE_NORMAL_IMAGE*0x10000) +#expr _ROMBASE = 0xffff0000 - (USE_NORMAL_IMAGE*0x10000) +expr _ROMBASE = 0x100000000 - (USE_NORMAL_IMAGE*0x10000) - ROM_IMAGE_SIZE ## ## Compute a range of ROM that can cached to speed of linuxBIOS,