From 2ddbbb22dbaf14adc96f95950e5356b71ceb56f7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Tue, 19 Aug 2025 09:25:32 +0200 Subject: [PATCH] ukify: adjust comments --- src/ukify/ukify.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ukify/ukify.py b/src/ukify/ukify.py index 5cd902bd9db..6d55abab35e 100755 --- a/src/ukify/ukify.py +++ b/src/ukify/ukify.py @@ -943,10 +943,10 @@ def pe_add_sections(opts: UkifyConfig, uki: UKI, output: str) -> None: pe.FILE_HEADER.NumberOfSymbols = 0 pe.FILE_HEADER.IMAGE_FILE_LOCAL_SYMS_STRIPPED = True - # Old stubs might have been stripped, leading to unaligned raw data values, so let's fix them up here. # pylint thinks that Structure doesn't have various members that it has… # pylint: disable=no-member + # Old stubs might have been stripped, leading to unaligned raw data values, so let's fix them up here. for i, section in enumerate(pe.sections): oldp = section.PointerToRawData oldsz = section.SizeOfRawData @@ -1418,11 +1418,11 @@ def make_uki(opts: UkifyConfig) -> None: for section in opts.sections: uki.add_section(section) - # Don't add a sbat section to profile PE binaries. + # Don't add an .sbat section to profile PE binaries. if (opts.join_profiles or not opts.profile) and not opts.pcrsig: if linux is not None: - # Merge the .sbat sections from stub, kernel and parameter, so that revocation can be done on - # either. + # Merge the .sbat sections from stub, kernel, and parameter, so + # that revocation can be done on either. input_pes = [opts.stub, linux] if not opts.sbat: opts.sbat = [STUB_SBAT] -- 2.47.3