Skip to content

Commit 5a0e40a

Browse files
committed
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>
1 parent 102ffc8 commit 5a0e40a

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

sdk_container/src/third_party/coreos-overlay/sys-kernel/coreos-sources/coreos-sources-6.12.62.ebuild

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,12 @@ IUSE=""
4040
# patchlevel revision. We mustn't apply our patches first, it fails when the
4141
# local patches overlap with the upstream patch.
4242
UNIPATCH_LIST="
43-
${PATCH_DIR}/z0001-kbuild-derive-relative-path-for-srctree-from-CURDIR.patch \
44-
${PATCH_DIR}/z0002-pahole-support-reproducible-builds.patch \
45-
${PATCH_DIR}/z0003-Revert-x86-boot-Remove-the-bugger-off-message.patch \
46-
${PATCH_DIR}/z0004-efi-add-an-efi_secure_boot-flag-to-indicate-secure-b.patch \
47-
${PATCH_DIR}/z0005-efi-lock-down-the-kernel-if-booted-in-secure-boot-mo.patch \
48-
${PATCH_DIR}/z0006-mtd-disable-slram-and-phram-when-locked-down.patch \
49-
${PATCH_DIR}/z0007-arm64-add-kernel-config-option-to-lock-down-when.patch \
50-
${PATCH_DIR}/z0009-block-add-partition-uuid-into-uevent.patch \
43+
${PATCH_DIR}/z0001-kbuild-derive-relative-path-for-srctree-from-CURDIR.patch
44+
${PATCH_DIR}/z0002-pahole-support-reproducible-builds.patch
45+
${PATCH_DIR}/z0003-Revert-x86-boot-Remove-the-bugger-off-message.patch
46+
${PATCH_DIR}/z0004-efi-add-an-efi_secure_boot-flag-to-indicate-secure-b.patch
47+
${PATCH_DIR}/z0005-efi-lock-down-the-kernel-if-booted-in-secure-boot-mo.patch
48+
${PATCH_DIR}/z0006-mtd-disable-slram-and-phram-when-locked-down.patch
49+
${PATCH_DIR}/z0007-arm64-add-kernel-config-option-to-lock-down-when.patch
50+
${PATCH_DIR}/z0009-block-add-partition-uuid-into-uevent.patch
5151
"

sdk_container/src/third_party/coreos-overlay/sys-kernel/coreos-sources/revbump.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2688,7 +2688,7 @@ mv "${srcdir}"/[0-9]*.patch .
26882688
for f in [0-9]*.patch; do
26892689
mv "$f" "z$f"
26902690
done
2691-
ls z[0-9]*.patch | sed -e 's/^/\t${PATCH_DIR}\//g' -e 's/$/ \\/g' >> \
2691+
ls z[0-9]*.patch | sed -e 's/^/\t${PATCH_DIR}\//g' >> \
26922692
"../../${new_ebuild}"
26932693
popd >/dev/null
26942694

0 commit comments

Comments
 (0)