|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [PATCH v5 2/5] x86/efi: discard multiboot and PVH support for PE binary
From: Roger Pau Monné <roger.pau@xxxxxxxxxx>
Multiboot and PVH booting are not supported for PE, hence discards them
in the linker script when doing a PE build.
That removes some relocations that otherwise appear due to the usage of the
start and __efi64_mb2_start symbols in the multiboot2 header.
Section discarding is not done updating DISCARD_SECTIONS definition as the
change is specific for x86.
No functional change intended.
Signed-off-by: Roger Pau Monné <roger.pau@xxxxxxxxxx>
Signed-off-by: Frediano Ziglio <frediano.ziglio@xxxxxxxxxx>
--
Changes since v1:
- improve commit message;
- change section orders to avoid changing code order in final executable;
- merge 2 commits;
- removed deprecated documentation section.
Changes since v2:
- Update commit message, join 2 sentences together.
Changes since v3:
- Added Acked-by.
Changes since v4:
- more clear subject;
- removed more code/data from EFI output;
- removed Acked-by.
---
docs/hypervisor-guide/x86/how-xen-boots.rst | 6 ------
xen/arch/x86/boot/head.S | 8 ++++----
xen/arch/x86/xen.lds.S | 9 +++++++++
3 files changed, 13 insertions(+), 10 deletions(-)
diff --git a/docs/hypervisor-guide/x86/how-xen-boots.rst
b/docs/hypervisor-guide/x86/how-xen-boots.rst
index 8b3229005c..b6d852050a 100644
--- a/docs/hypervisor-guide/x86/how-xen-boots.rst
+++ b/docs/hypervisor-guide/x86/how-xen-boots.rst
@@ -82,12 +82,6 @@ When a PEI-capable toolchain is found, the objects are
linked together and a
PE32+ binary is created. It can be run directly from the EFI shell, and has
``efi_start`` as its entry symbol.
-.. note::
-
- xen.efi does contain all MB1/MB2/PVH tags included in the rest of the
- build. However, entry via anything other than the EFI64 protocol is
- unsupported, and won't work.
-
Boot
----
diff --git a/xen/arch/x86/boot/head.S b/xen/arch/x86/boot/head.S
index 77bb7a9e21..ebdc562207 100644
--- a/xen/arch/x86/boot/head.S
+++ b/xen/arch/x86/boot/head.S
@@ -126,7 +126,7 @@ multiboot2_header:
.size multiboot2_header, . - multiboot2_header
.type multiboot2_header, @object
- .section .init.rodata, "a", @progbits
+ .section .init.rodata.multiboot, "a", @progbits
.Lbad_cpu_msg: .asciz "ERR: Not a 64-bit CPU!"
.Lbad_ldr_msg: .asciz "ERR: Not a Multiboot bootloader!"
@@ -135,8 +135,7 @@ multiboot2_header:
.Lbag_alg_msg: .asciz "ERR: Xen must be loaded at a 2Mb boundary!"
.Lno_nx_msg: .asciz "ERR: Not an NX-capable CPU!"
- .section .init.data, "aw", @progbits
- .subsection 1 /* Put data here after the page tables (in x86_64.S). */
+ .section .init.data.multiboot, "aw", @progbits
.align 4
.word 0
@@ -152,7 +151,7 @@ vga_text_buffer:
efi_platform:
.byte 0
- .section .init.text, "ax", @progbits
+ .section .init.multiboot, "ax", @progbits
early_error: /* Here to improve the disassembly. */
@@ -710,6 +709,7 @@ trampoline_setup:
/* Jump into the relocated trampoline. */
lret
+ .section .init.text, "ax", @progbits
ENTRY(trampoline_start)
#include "trampoline.S"
ENTRY(trampoline_end)
diff --git a/xen/arch/x86/xen.lds.S b/xen/arch/x86/xen.lds.S
index 8e63cf5bc2..88553513a9 100644
--- a/xen/arch/x86/xen.lds.S
+++ b/xen/arch/x86/xen.lds.S
@@ -57,6 +57,12 @@ SECTIONS
__image_base__ = .;
#else
. = __image_base__;
+ /DISCARD/ : {
+ *(.text.header)
+ *(.init.multiboot)
+ *(.init.data.multiboot)
+ *(.init.rodata.multiboot)
+ }
#endif
#if 0
@@ -195,6 +201,7 @@ SECTIONS
DECL_SECTION(.init.text) {
#endif
_sinittext = .;
+ *(.init.multiboot)
*(.init.text)
*(.text.startup)
_einittext = .;
@@ -220,6 +227,7 @@ SECTIONS
*(.init.rodata.cf_clobber)
__initdata_cf_clobber_end = .;
+ *(.init.rodata.multiboot)
*(.init.rodata)
*(.init.rodata.*)
@@ -234,6 +242,7 @@ SECTIONS
*(.initcall1.init)
__initcall_end = .;
+ *(.init.data.multiboot)
*(.init.data)
*(.init.data.rel)
*(.init.data.rel.*)
--
2.43.0
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |