commit: b7ca73e4faafc23a554eb6eecc4b513449d41d66 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Thu Dec 28 11:31:33 2023 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Sat Dec 30 16:19:11 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7ca73e4
linux-mod-r1.eclass: Call module cleanup in postinst Closes: https://github.com/gentoo/gentoo/pull/34513 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> eclass/linux-mod-r1.eclass | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eclass/linux-mod-r1.eclass b/eclass/linux-mod-r1.eclass index 54df2406e5c7..67a4b64eb481 100644 --- a/eclass/linux-mod-r1.eclass +++ b/eclass/linux-mod-r1.eclass @@ -109,7 +109,7 @@ esac if [[ ! ${_LINUX_MOD_R1_ECLASS} ]]; then _LINUX_MOD_R1_ECLASS=1 -inherit edo linux-info multiprocessing toolchain-funcs +inherit dist-kernel-utils edo linux-info multiprocessing toolchain-funcs IUSE="dist-kernel modules-compress modules-sign +strip ${MODULES_OPTIONAL_IUSE}" @@ -468,6 +468,7 @@ linux-mod-r1_pkg_postinst() { debug-print-function ${FUNCNAME[0]} "${@}" _modules_check_function ${#} 0 0 || return 0 + dist-kernel_compressed_module_cleanup "${EROOT}/lib/modules/${KV_FULL}" _modules_update_depmod # post_process ensures modules were installed and that the eclass' USE
