diff options
| author | Peter Jones <pjones@redhat.com> | 2023-12-01 18:19:38 -0500 |
|---|---|---|
| committer | Peter Jones <pjones@redhat.com> | 2024-01-22 14:17:20 -0500 |
| commit | be8ff7c2680fed067cdd76df0afc43138c24cc0d (patch) | |
| tree | fa1905db7be5e0bb7674fc1b05bef2a5a1790e05 | |
| parent | 49c6d95bd5c4f57f004db1f25b57fe36ca1c7443 (diff) | |
| download | efi-boot-shim-be8ff7c2680fed067cdd76df0afc43138c24cc0d.tar.gz efi-boot-shim-be8ff7c2680fed067cdd76df0afc43138c24cc0d.zip | |
post-process-pe: Don't set the NX_COMPAT flag by default after all.
We thought we would fully support NX compatibility in the full stack for
this release, but all of the necessary components aren't *quite* ready
for this release.
This patch switches back the default that was changed in a53b9f7ceec1d,
but it leaves the build infrastructure in place.
Signed-off-by: Peter Jones <pjones@redhat.com>
| -rw-r--r-- | post-process-pe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/post-process-pe.c b/post-process-pe.c index f39fdddf..de8f4a38 100644 --- a/post-process-pe.c +++ b/post-process-pe.c @@ -42,7 +42,7 @@ static int verbosity; 0; \ }) -static bool set_nx_compat = true; +static bool set_nx_compat = false; typedef uint8_t UINT8; typedef uint16_t UINT16; |
