Fix creation of coreboot.bootblock when -O2 is specified instead of -Os (4GB image issue).

According to some GCC folks -Os should be considered a buggy and unreliable
code path, so at least keep -O2 working. coreboot_ram is only 4KB bigger.

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>




git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5189 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Stefan Reinauer 2010-03-05 18:03:49 +00:00 committed by Stefan Reinauer
parent ec42c2e8ac
commit 1b4f435281
1 changed files with 1 additions and 0 deletions

View File

@ -47,6 +47,7 @@ SECTIONS
*(.rom.data);
*(.init.rodata.*);
*(.init.text);
*(.rodata);
*(.rodata.*);
*(.rom.data.*);
. = ALIGN(16);