diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2020-09-26 16:33:51 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2020-09-27 02:14:47 +0200 |
commit | 6388dbe41ac1ff266f9caee1112e188f9bfb7f60 (patch) | |
tree | b923df89d9660851c4a00f3fbf8d2171e9f2e812 /app-backup/rear | |
parent | sys-apps/portage: Remove old version 3.0.7 (diff) | |
download | gentoo-6388dbe41ac1ff266f9caee1112e188f9bfb7f60.tar.gz gentoo-6388dbe41ac1ff266f9caee1112e188f9bfb7f60.tar.bz2 gentoo-6388dbe41ac1ff266f9caee1112e188f9bfb7f60.zip |
app-backup/rear: remove unused patch(es)
Closes: https://github.com/gentoo/gentoo/pull/17682
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'app-backup/rear')
-rw-r--r-- | app-backup/rear/files/rear-1.15-add-support-for-gentoo-kernels.patch | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/app-backup/rear/files/rear-1.15-add-support-for-gentoo-kernels.patch b/app-backup/rear/files/rear-1.15-add-support-for-gentoo-kernels.patch deleted file mode 100644 index 608685418676..000000000000 --- a/app-backup/rear/files/rear-1.15-add-support-for-gentoo-kernels.patch +++ /dev/null @@ -1,19 +0,0 @@ -diff --git a/usr/share/rear/pack/Linux-i386/30_copy_kernel.sh b/usr/share/rear/pack/Linux-i386/30_copy_kernel.sh -index 6816f37..ec437e4 100644 ---- a/usr/share/rear/pack/Linux-i386/30_copy_kernel.sh -+++ b/usr/share/rear/pack/Linux-i386/30_copy_kernel.sh -@@ -50,6 +50,14 @@ if [ ! -s "$KERNEL_FILE" ]; then - else - Error "Could not find Arch kernel /boot/vmlinuz[-linux|26]" - fi -+ elif [ -f /etc/gentoo-release ]; then -+ if [ -f "/boot/kernel-genkernel-${REAL_MACHINE}-${KERNEL_VERSION}" ]; then -+ KERNEL_FILE="/boot/kernel-genkernel-${REAL_MACHINE}-${KERNEL_VERSION}" -+ elif [ -f "/boot/kernel-${KERNEL_VERSION}" ]; then -+ KERNEL_FILE="/boot/kernel-${KERNEL_VERSION}" -+ else -+ Error "Could not find Gentoo kernel" -+ fi - else - Error "Could not find a matching kernel in /boot !" - fi |