From 904b2a23c2aacdab32af335d9875aec391ee0268 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Micha=C5=82=20G=C3=B3rny?= Date: Sat, 25 Jan 2020 19:01:50 +0100 Subject: [PATCH] kernel-install.eclass: Remove initramfs in postrm MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Closes: https://bugs.gentoo.org/706332 Signed-off-by: Michał Górny --- eclass/kernel-install.eclass | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/eclass/kernel-install.eclass b/eclass/kernel-install.eclass index 7e64f44c8c33..1fdeb1bf4dc7 100644 --- a/eclass/kernel-install.eclass +++ b/eclass/kernel-install.eclass @@ -302,7 +302,13 @@ kernel-install_pkg_prerm() { kernel-install_pkg_postrm() { debug-print-function ${FUNCNAME} "${@}" - # (no-op at the moment) + if [[ -z ${ROOT} ]] && use initramfs; then + local image_path=$(kernel-install_get_image_path) + ebegin "Removing initramfs" + rm -f "${EROOT}/usr/src/linux-${PV}/${image_path%/*}/initrd" && + find "${EROOT}/usr/src/linux-${PV}" -depth -type d -empty -delete + eend ${?} + fi } _KERNEL_INSTALL_ECLASS=1 -- 2.26.2