From 541ebb2465191b6c97cf6db2af6170f320d70806 Mon Sep 17 00:00:00 2001 From: Jens Reidel Date: Fri, 14 Nov 2025 02:44:30 +0100 Subject: [PATCH] linux-postmarketos-exynos5: 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-exynos5/APKBUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/device/community/linux-postmarketos-exynos5/APKBUILD b/device/community/linux-postmarketos-exynos5/APKBUILD index 82e19526d..77b7302fd 100644 --- a/device/community/linux-postmarketos-exynos5/APKBUILD +++ b/device/community/linux-postmarketos-exynos5/APKBUILD @@ -5,7 +5,7 @@ pkgname=linux-postmarketos-exynos5 pkgver=6.12.53 -pkgrel=1 +pkgrel=2 pkgdesc="Mainline kernel fork for Samsung Exynos5 devices" arch="armv7" _carch="arm" @@ -57,6 +57,7 @@ package() { mkdir -p "$pkgdir"/boot make zinstall modules_install dtbs_install \ ARCH="$_carch" \ + LLVM=1 \ INSTALL_PATH="$pkgdir"/boot \ INSTALL_MOD_PATH="$pkgdir" \ INSTALL_MOD_STRIP=1 \