diff --git a/bl2/bl2.ld.S b/bl2/bl2.ld.S index d30149b105a80b8a45893b35ec9f3f6374c16d7b..ea86e0aa9d61b31cbd688ec9619da1f63629a169 100644 --- a/bl2/bl2.ld.S +++ b/bl2/bl2.ld.S @@ -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 */ diff --git a/bl31/bl31.ld.S b/bl31/bl31.ld.S index 7b423996a08e5c65855e7ceafbcd5558cb5a10e0..0a78c41ad9e55d95f229b0f09ea22b671a9f514c 100644 --- a/bl31/bl31.ld.S +++ b/bl31/bl31.ld.S @@ -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 */