mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-18 18:44:22 +00:00
Remove duplicate xlat_table descriptions
The BL31 and BL2 linker scripts ended up having duplicate descriptions for xlat_tables section. This patch removes those duplicate descriptions. Change-Id: Ibbdda0902c57fca5ea4e91e0baefa6df8f0a9bb1
This commit is contained in:
parent
20d284c08d
commit
e3fff15380
2 changed files with 2 additions and 20 deletions
11
bl2/bl2.ld.S
11
bl2/bl2.ld.S
|
@ -60,15 +60,6 @@ SECTIONS
|
||||||
__RO_END__ = .;
|
__RO_END__ = .;
|
||||||
} >RAM
|
} >RAM
|
||||||
|
|
||||||
/*
|
|
||||||
* The xlat_table section is for full, aligned page tables (4K).
|
|
||||||
* Removing them from .bss avoids forcing 4K alignment on
|
|
||||||
* the .bss section and eliminates the unecessary zero init
|
|
||||||
*/
|
|
||||||
xlat_table (NOLOAD) : {
|
|
||||||
*(xlat_table)
|
|
||||||
} >RAM
|
|
||||||
|
|
||||||
.data . : {
|
.data . : {
|
||||||
__DATA_START__ = .;
|
__DATA_START__ = .;
|
||||||
*(.data)
|
*(.data)
|
||||||
|
@ -93,7 +84,7 @@ SECTIONS
|
||||||
} >RAM
|
} >RAM
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The .xlat_table section is for full, aligned page tables (4K).
|
* The xlat_table section is for full, aligned page tables (4K).
|
||||||
* Removing them from .bss avoids forcing 4K alignment on
|
* Removing them from .bss avoids forcing 4K alignment on
|
||||||
* the .bss section and eliminates the unecessary zero init
|
* the .bss section and eliminates the unecessary zero init
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -68,15 +68,6 @@ SECTIONS
|
||||||
__RO_END__ = .;
|
__RO_END__ = .;
|
||||||
} >RAM
|
} >RAM
|
||||||
|
|
||||||
/*
|
|
||||||
* The xlat_table section is for full, aligned page tables (4K).
|
|
||||||
* Removing them from .bss avoids forcing 4K alignment on
|
|
||||||
* the .bss section and eliminates the unecessary zero init
|
|
||||||
*/
|
|
||||||
xlat_table (NOLOAD) : {
|
|
||||||
*(xlat_table)
|
|
||||||
} >RAM
|
|
||||||
|
|
||||||
.data . : {
|
.data . : {
|
||||||
__DATA_START__ = .;
|
__DATA_START__ = .;
|
||||||
*(.data)
|
*(.data)
|
||||||
|
@ -101,7 +92,7 @@ SECTIONS
|
||||||
} >RAM
|
} >RAM
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The .xlat_table section is for full, aligned page tables (4K).
|
* The xlat_table section is for full, aligned page tables (4K).
|
||||||
* Removing them from .bss avoids forcing 4K alignment on
|
* Removing them from .bss avoids forcing 4K alignment on
|
||||||
* the .bss section and eliminates the unecessary zero init
|
* the .bss section and eliminates the unecessary zero init
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Reference in a new issue