mirror of
https://github.com/linux-sunxi/u-boot-sunxi.git
synced 2024-02-12 11:16:03 +08:00
Use linker ASSERT statement to prevent undetected overlapping of
sections on PPChameleon board; other boards might use this, too.
This commit is contained in:
@ -2,6 +2,9 @@
|
|||||||
Changes for U-Boot 1.1.3:
|
Changes for U-Boot 1.1.3:
|
||||||
======================================================================
|
======================================================================
|
||||||
|
|
||||||
|
* Use linker ASSERT statement to prevent undetected overlapping of
|
||||||
|
sections on PPChameleon board; other boards might use this, too.
|
||||||
|
|
||||||
* Patch by Stefan Roese, 03 May 2005:
|
* Patch by Stefan Roese, 03 May 2005:
|
||||||
Update for P3G4
|
Update for P3G4
|
||||||
Fix problems in cmd_universe.c
|
Fix problems in cmd_universe.c
|
||||||
|
@ -140,6 +140,7 @@ SECTIONS
|
|||||||
*(COMMON)
|
*(COMMON)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ppcenv_assert = ASSERT(. < 0xFFFF8000, ".bss section too big, overlaps .ppcenv section. Please update your confguration: CFG_MONITOR_BASE, CFG_MONITOR_LEN and TEXT_BASE may need to be modified.");
|
||||||
. = 0xFFFF8000;
|
. = 0xFFFF8000;
|
||||||
.ppcenv :
|
.ppcenv :
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user