From e3575ecd1dc375598cd67eed5e0b132ab939f709 Mon Sep 17 00:00:00 2001 From: Ricardo Pardini Date: Sat, 2 Mar 2024 22:01:16 +0100 Subject: [PATCH] kernel: revert "also, don't add target 'install' twice" - oops --- lib/functions/compilation/kernel.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/functions/compilation/kernel.sh b/lib/functions/compilation/kernel.sh index d5a66faf8..37d5e16bf 100644 --- a/lib/functions/compilation/kernel.sh +++ b/lib/functions/compilation/kernel.sh @@ -130,7 +130,7 @@ function kernel_prepare_build_and_package() { # @TODO: Only combining `install` and `modules_install` enable mixed-build and __build_one_by_one # We should spilt the `build` and `install` into two make steps as the kernel required - build_targets+=("${KERNEL_INSTALL_TYPE:-install}") + build_targets+=("install" "${KERNEL_INSTALL_TYPE:-install}") install_make_params_quoted+=("INSTALL_MOD_STRIP=1") # strip modules during install