From 22a2a44ecf4caccb5f5e8dc4d1e34dde750d7e56 Mon Sep 17 00:00:00 2001 From: Jens Reidel Date: Fri, 14 Nov 2025 02:52:40 +0100 Subject: [PATCH] linux-postmarketos-qcom-laptop: Use llvm-strip for modules_install I had originally overlooked that this was necessary. If INSTALL_MOD_STRIP=1 is set when invoking modules_install, we need to set LLVM=1 to ensure that llvm-strip is used instead of GNU binutils strip. Signed-off-by: Jens Reidel Part-of: --- device/community/linux-postmarketos-qcom-laptop/APKBUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/device/community/linux-postmarketos-qcom-laptop/APKBUILD b/device/community/linux-postmarketos-qcom-laptop/APKBUILD index fff2ee6cf..3a52425e3 100644 --- a/device/community/linux-postmarketos-qcom-laptop/APKBUILD +++ b/device/community/linux-postmarketos-qcom-laptop/APKBUILD @@ -2,7 +2,7 @@ # Co-Maintainer: Casey Connolly pkgname=linux-postmarketos-qcom-laptop pkgver=6.16 -pkgrel=2 +pkgrel=3 # Commit from branch @ https://github.com/jhovold/linux/tree/wip/x1e80100-$pkgver _commit="a9cd6cda46ab81b1ec1d687d40ff0933dc6e6915" pkgdesc="Generic kernel for Qualcomm laptops" @@ -75,6 +75,7 @@ package() { make modules_install dtbs_install \ ARCH="$_carch" \ + LLVM=1 \ INSTALL_PATH="$pkgdir"/boot/ \ INSTALL_MOD_PATH="$pkgdir" \ INSTALL_MOD_STRIP=1 \