summaryrefslogtreecommitdiff
path: root/vgasrc
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2014-07-01 09:50:04 -0400
committerKevin O'Connor <kevin@koconnor.net>2014-07-01 09:50:04 -0400
commita932b908dbc6b9c831d94773b016be8c92086098 (patch)
tree94e6cd45ecb86bcf80450dae22dd1d278f11d429 /vgasrc
parent68354a6ce2d56b138d165a5a6b7c8efa1cb65a49 (diff)
downloadqemu-seabios-a932b908dbc6b9c831d94773b016be8c92086098.tar.gz
vgabios: Fix broken build resulting from e5749978.
The e5749978 commit added -fno-merge-constants to the compile flag. That option changes the names of ".rodata" sections. Update vgalayout.lds.S so that the vgabios can continue to build. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'vgasrc')
-rw-r--r--vgasrc/vgalayout.lds.S3
1 files changed, 1 insertions, 2 deletions
diff --git a/vgasrc/vgalayout.lds.S b/vgasrc/vgalayout.lds.S
index 08a5f32..533734d 100644
--- a/vgasrc/vgalayout.lds.S
+++ b/vgasrc/vgalayout.lds.S
@@ -13,8 +13,7 @@ SECTIONS
KEEP(*(.rom.header))
*(.text.*)
_rodata = . ;
- *(.rodata.__func__.*)
- *(.rodata.str1.1)
+ *(.rodata*)
*(.data16.*)
}