From: Zbigniew Jędrzejewski-Szmek Date: Tue, 19 Aug 2025 07:25:32 +0000 (+0200) Subject: ukify: adjust comments X-Git-Tag: v258-rc3~9^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2ddbbb22dbaf14adc96f95950e5356b71ceb56f7;p=thirdparty%2Fsystemd.git ukify: adjust comments --- 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]