From: Michał Górny Date: Sat, 25 Jan 2020 18:01:50 +0000 (+0100) Subject: kernel-install.eclass: Remove initramfs in postrm X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=904b2a23c2aacdab32af335d9875aec391ee0268;p=gentoo.git kernel-install.eclass: Remove initramfs in postrm Closes: https://bugs.gentoo.org/706332 Signed-off-by: Michał Górny --- 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