aboutsummaryrefslogtreecommitdiff
path: root/src/config/nofailovercalculation.lb
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2010-02-10 11:56:21 +0000
committerStefan Reinauer <stepan@openbios.org>2010-02-10 11:56:21 +0000
commit531704ed71c48a41fba23948fe8f9104c5e1f470 (patch)
treecc62bd852c773f3ea1d1d97f9d3936af7790da76 /src/config/nofailovercalculation.lb
parentf60a2567d2428360b855e12618d85d3b516d5c77 (diff)
Drop src/config alltogether
- drop two "newconfig" based files - drop two obsolete doxygen config files and check in our latest Doxyfile.coreboot (that has been used to build coreboot online documentation since 2005 or so) - move two i386 specific linker scripts to src/arch/i386 Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5105 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/config/nofailovercalculation.lb')
-rw-r--r--src/config/nofailovercalculation.lb25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/config/nofailovercalculation.lb b/src/config/nofailovercalculation.lb
deleted file mode 100644
index 6082c3e9a3..0000000000
--- a/src/config/nofailovercalculation.lb
+++ /dev/null
@@ -1,25 +0,0 @@
-##
-## Compute the location and size of where this firmware image
-## (coreboot plus bootloader) will live in the boot rom chip.
-##
-if CONFIG_USE_FALLBACK_IMAGE
- default CONFIG_ROM_SECTION_SIZE = CONFIG_FALLBACK_SIZE
- default CONFIG_ROM_SECTION_OFFSET = ( CONFIG_ROM_SIZE - CONFIG_FALLBACK_SIZE )
-else
- default CONFIG_ROM_SECTION_SIZE = CONFIG_FALLBACK_SIZE
- default CONFIG_ROM_SECTION_OFFSET = ( CONFIG_ROM_SIZE - CONFIG_FALLBACK_SIZE - CONFIG_FALLBACK_SIZE )
-end
-
-##
-## Compute where this copy of coreboot will start in the boot rom
-##
-default CONFIG_ROMBASE = (0xffffffff - CONFIG_ROM_SIZE + CONFIG_ROM_SECTION_OFFSET + 1)
-
-##
-## Compute a range of ROM that can cached to speed up coreboot,
-## execution speed.
-##
-## CONFIG_XIP_ROM_SIZE must be a power of 2 and is set in mainboard Config.lb
-## CONFIG_XIP_ROM_BASE must be a multiple of CONFIG_XIP_ROM_SIZE
-##
-default CONFIG_XIP_ROM_BASE = ( CONFIG_ROMBASE - CONFIG_XIP_ROM_SIZE + CONFIG_ROM_IMAGE_SIZE )