mirror of
https://github.com/memtest86plus/memtest86plus.git
synced 2024-11-23 08:26:23 -06:00
Mark EFI image .text section as writable.
The EFI image .text section is taken from memtest_shared.bin, which is a combined code and data section. Some recent UEFI BIOSs set the page protection attributes when loading EFI images, so we need to mark this section as both executable and writable to prevent page faults. Fixes issue #413 and should fix issue #377.
This commit is contained in:
parent
771d6d4dca
commit
e38ad8e6a4
@ -7,7 +7,7 @@
|
||||
// end of the boot sector), with the remainder of the header being provided by
|
||||
// setup.S.
|
||||
//
|
||||
// Copyright (C) 2020-2023 Martin Whitaker.
|
||||
// Copyright (C) 2020-2024 Martin Whitaker.
|
||||
//
|
||||
// Derived from Linux 5.6 arch/x86/boot/header.S:
|
||||
//
|
||||
@ -190,6 +190,7 @@ section_table:
|
||||
.word 0 # NumberOfRelocations
|
||||
.word 0 # NumberOfLineNumbers
|
||||
.long IMAGE_SCN_MEM_READ \
|
||||
| IMAGE_SCN_MEM_WRITE \
|
||||
| IMAGE_SCN_MEM_EXECUTE \
|
||||
| IMAGE_SCN_CNT_CODE # Characteristics (section flags)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user