mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
first cleanup for Tiger MPX
This commit is contained in:
parent
85a2836b28
commit
dcf2475079
3 changed files with 8 additions and 9 deletions
|
@ -58,8 +58,7 @@ mainboardinit northbridge/amd/amd76x/mpinit.inc USE_FALLBACK_IMAGE
|
|||
## Failover if we need to
|
||||
##
|
||||
|
||||
#comment out 4 debug SMJ
|
||||
#mainboardinit southbridge/amd/amd768/cmos_boot_failover.inc USE_FALLBACK_IMAGE
|
||||
mainboardinit southbridge/amd/amd768/cmos_boot_failover.inc USE_FALLBACK_IMAGE
|
||||
|
||||
###
|
||||
### O.k. We aren't just an intermediary anymore!
|
||||
|
@ -218,6 +217,7 @@ option FINAL_MAINBOARD_FIXUP=1
|
|||
## This is useful for optional includes
|
||||
##
|
||||
option USE_FALLBACK_IMAGE=0
|
||||
|
||||
expr BUILD_NORMAL_IMAGE=!USE_FALLBACK_IMAGE
|
||||
|
||||
###
|
||||
|
|
|
@ -26,7 +26,7 @@ entries
|
|||
0 384 r 0 reserved_memory
|
||||
384 1 e 4 boot_option
|
||||
385 1 e 4 last_boot
|
||||
386 3 e 5 baud_rate
|
||||
392 3 e 5 baud_rate
|
||||
392 4 e 6 debug_level
|
||||
396 1 e 1 power_on_after_fail
|
||||
#401 1 e 1 ECC_memory
|
||||
|
|
|
@ -35,13 +35,12 @@ SECTIONS
|
|||
__bss_start = .; /* BSS */
|
||||
.bss (.): {
|
||||
*(.bss)
|
||||
_ebss = .;
|
||||
|
||||
_heap = .;
|
||||
. += HEAPSIZE;
|
||||
_eheap = .;
|
||||
}
|
||||
_ebss = .;
|
||||
_heap = .;
|
||||
.heap (.): {
|
||||
. = HEAPSIZE;
|
||||
}
|
||||
_eheap = .;
|
||||
_end = . ;
|
||||
|
||||
_ram_seg = _text;
|
||||
|
|
Loading…
Add table
Reference in a new issue