sys-kernel/coreos-sources: Don't add backslashes to UNIPATCH_LIST

It's unnecessary and looks weird.

Signed-off-by: James Le Cuirot <jlecuirot@microsoft.com>
This commit is contained in:
James Le Cuirot 2025-12-12 17:10:42 +00:00
parent 102ffc86fc
commit 5a0e40ae97
No known key found for this signature in database
GPG Key ID: 1226415D00DD3137
2 changed files with 9 additions and 9 deletions

View File

@ -40,12 +40,12 @@ IUSE=""
# patchlevel revision. We mustn't apply our patches first, it fails when the # patchlevel revision. We mustn't apply our patches first, it fails when the
# local patches overlap with the upstream patch. # local patches overlap with the upstream patch.
UNIPATCH_LIST=" UNIPATCH_LIST="
${PATCH_DIR}/z0001-kbuild-derive-relative-path-for-srctree-from-CURDIR.patch \ ${PATCH_DIR}/z0001-kbuild-derive-relative-path-for-srctree-from-CURDIR.patch
${PATCH_DIR}/z0002-pahole-support-reproducible-builds.patch \ ${PATCH_DIR}/z0002-pahole-support-reproducible-builds.patch
${PATCH_DIR}/z0003-Revert-x86-boot-Remove-the-bugger-off-message.patch \ ${PATCH_DIR}/z0003-Revert-x86-boot-Remove-the-bugger-off-message.patch
${PATCH_DIR}/z0004-efi-add-an-efi_secure_boot-flag-to-indicate-secure-b.patch \ ${PATCH_DIR}/z0004-efi-add-an-efi_secure_boot-flag-to-indicate-secure-b.patch
${PATCH_DIR}/z0005-efi-lock-down-the-kernel-if-booted-in-secure-boot-mo.patch \ ${PATCH_DIR}/z0005-efi-lock-down-the-kernel-if-booted-in-secure-boot-mo.patch
${PATCH_DIR}/z0006-mtd-disable-slram-and-phram-when-locked-down.patch \ ${PATCH_DIR}/z0006-mtd-disable-slram-and-phram-when-locked-down.patch
${PATCH_DIR}/z0007-arm64-add-kernel-config-option-to-lock-down-when.patch \ ${PATCH_DIR}/z0007-arm64-add-kernel-config-option-to-lock-down-when.patch
${PATCH_DIR}/z0009-block-add-partition-uuid-into-uevent.patch \ ${PATCH_DIR}/z0009-block-add-partition-uuid-into-uevent.patch
" "

View File

@ -2688,7 +2688,7 @@ mv "${srcdir}"/[0-9]*.patch .
for f in [0-9]*.patch; do for f in [0-9]*.patch; do
mv "$f" "z$f" mv "$f" "z$f"
done done
ls z[0-9]*.patch | sed -e 's/^/\t${PATCH_DIR}\//g' -e 's/$/ \\/g' >> \ ls z[0-9]*.patch | sed -e 's/^/\t${PATCH_DIR}\//g' >> \
"../../${new_ebuild}" "../../${new_ebuild}"
popd >/dev/null popd >/dev/null