From 606b7a130c997ed63747cc231db000fe8d9dca4b Mon Sep 17 00:00:00 2001 From: Jens Reidel Date: Fri, 14 Nov 2025 03:00:44 +0100 Subject: [PATCH] linux-postmarketos-asahi: 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/testing/linux-postmarketos-asahi/APKBUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/device/testing/linux-postmarketos-asahi/APKBUILD b/device/testing/linux-postmarketos-asahi/APKBUILD index 684b0b5e7..d2867b753 100644 --- a/device/testing/linux-postmarketos-asahi/APKBUILD +++ b/device/testing/linux-postmarketos-asahi/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Clayton Craft pkgname=linux-postmarketos-asahi pkgver=6.17.7_p2 -pkgrel=0 +pkgrel=1 _rel=${pkgver#*_p} _kver=${pkgver%_p*} _kver=${_kver//_/-} @@ -77,6 +77,7 @@ package() { make modules_install dtbs_install \ ARCH="$_carch" \ + LLVM=1 \ INSTALL_PATH="$pkgdir"/boot/ \ INSTALL_MOD_PATH="$pkgdir" \ INSTALL_MOD_STRIP=1 \