25 lines
740 B
Diff
25 lines
740 B
Diff
|
# HG changeset patch
|
||
|
# User Jan Beulich <jbeulich@suse.com>
|
||
|
# Date 1336476796 -7200
|
||
|
# Node ID f3fd3136f7a04b8d4e9a6ef1e6787810bae198e9
|
||
|
# Parent 8f1e0cc4a507a52a49a2eb7832a57ecc7e032dce
|
||
|
x86: merge .text.* into .text while linking
|
||
|
|
||
|
For xen.efi, this eliminates a pointless gap between .text and
|
||
|
.text.unlikely of almost 2Mb size.
|
||
|
|
||
|
Signed-off-by: Jan Beulich <jbeulich@suse.com>
|
||
|
Acked-by: Keir Fraser <keir@xen.org>
|
||
|
|
||
|
--- a/xen/arch/x86/xen.lds.S
|
||
|
+++ b/xen/arch/x86/xen.lds.S
|
||
|
@@ -47,6 +47,8 @@ SECTIONS
|
||
|
.text : {
|
||
|
_stext = .; /* Text and read-only data */
|
||
|
*(.text)
|
||
|
+ *(.text.cold)
|
||
|
+ *(.text.unlikely)
|
||
|
*(.fixup)
|
||
|
*(.gnu.warning)
|
||
|
_etext = .; /* End of text section */
|