aboutsummaryrefslogtreecommitdiff
path: root/src/config/nofailovercalculation.lb
diff options
context:
space:
mode:
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 )