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:
Jeenu Viswambharan 2014-02-24 15:20:28 +00:00 committed by Dan Handley
parent 20d284c08d
commit e3fff15380
2 changed files with 2 additions and 20 deletions

View File

@ -60,15 +60,6 @@ SECTIONS
__RO_END__ = .;
} >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_START__ = .;
*(.data)
@ -93,7 +84,7 @@ SECTIONS
} >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
* the .bss section and eliminates the unecessary zero init
*/

View File

@ -68,15 +68,6 @@ SECTIONS
__RO_END__ = .;
} >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_START__ = .;
*(.data)
@ -101,7 +92,7 @@ SECTIONS
} >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
* the .bss section and eliminates the unecessary zero init
*/