mirror of
https://github.com/flatcar/scripts.git
synced 2025-12-22 17:52:12 +01:00
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:
parent
102ffc86fc
commit
5a0e40ae97
@ -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
|
||||||
"
|
"
|
||||||
|
|||||||
@ -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
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user