From 5a0e40ae972e9ca6e24d475e552bc016a9283658 Mon Sep 17 00:00:00 2001 From: James Le Cuirot Date: Fri, 12 Dec 2025 17:10:42 +0000 Subject: [PATCH] sys-kernel/coreos-sources: Don't add backslashes to UNIPATCH_LIST It's unnecessary and looks weird. Signed-off-by: James Le Cuirot --- .../coreos-sources/coreos-sources-6.12.62.ebuild | 16 ++++++++-------- .../sys-kernel/coreos-sources/revbump.sh | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/sdk_container/src/third_party/coreos-overlay/sys-kernel/coreos-sources/coreos-sources-6.12.62.ebuild b/sdk_container/src/third_party/coreos-overlay/sys-kernel/coreos-sources/coreos-sources-6.12.62.ebuild index 2d4bf5a8d8..eb361930dc 100644 --- a/sdk_container/src/third_party/coreos-overlay/sys-kernel/coreos-sources/coreos-sources-6.12.62.ebuild +++ b/sdk_container/src/third_party/coreos-overlay/sys-kernel/coreos-sources/coreos-sources-6.12.62.ebuild @@ -40,12 +40,12 @@ IUSE="" # patchlevel revision. We mustn't apply our patches first, it fails when the # local patches overlap with the upstream patch. UNIPATCH_LIST=" - ${PATCH_DIR}/z0001-kbuild-derive-relative-path-for-srctree-from-CURDIR.patch \ - ${PATCH_DIR}/z0002-pahole-support-reproducible-builds.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}/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}/z0007-arm64-add-kernel-config-option-to-lock-down-when.patch \ - ${PATCH_DIR}/z0009-block-add-partition-uuid-into-uevent.patch \ + ${PATCH_DIR}/z0001-kbuild-derive-relative-path-for-srctree-from-CURDIR.patch + ${PATCH_DIR}/z0002-pahole-support-reproducible-builds.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}/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}/z0007-arm64-add-kernel-config-option-to-lock-down-when.patch + ${PATCH_DIR}/z0009-block-add-partition-uuid-into-uevent.patch " diff --git a/sdk_container/src/third_party/coreos-overlay/sys-kernel/coreos-sources/revbump.sh b/sdk_container/src/third_party/coreos-overlay/sys-kernel/coreos-sources/revbump.sh index 8ac4d4552b..df8b8d6efb 100755 --- a/sdk_container/src/third_party/coreos-overlay/sys-kernel/coreos-sources/revbump.sh +++ b/sdk_container/src/third_party/coreos-overlay/sys-kernel/coreos-sources/revbump.sh @@ -2688,7 +2688,7 @@ mv "${srcdir}"/[0-9]*.patch . for f in [0-9]*.patch; do mv "$f" "z$f" 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}" popd >/dev/null