From e3f69f08c99df01c15c7bf88fcfb6e19d9b04603 Mon Sep 17 00:00:00 2001 From: Jens Reidel Date: Fri, 14 Nov 2025 02:48:39 +0100 Subject: [PATCH] linux-postmarketos-mediatek-mt81: 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-mediatek-mt81/APKBUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/device/community/linux-postmarketos-mediatek-mt81/APKBUILD b/device/community/linux-postmarketos-mediatek-mt81/APKBUILD index e1305a7b9..2546d0516 100644 --- a/device/community/linux-postmarketos-mediatek-mt81/APKBUILD +++ b/device/community/linux-postmarketos-mediatek-mt81/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: WeirdTreeThing pkgname=linux-postmarketos-mediatek-mt81 pkgver=6.12.57 -pkgrel=0 +pkgrel=1 pkgdesc="Mainline kernel for mediatek mt8183/mt8192/mt8195/mt8186" arch="aarch64" _flavor="${pkgname#linux-}" @@ -87,6 +87,7 @@ package() { make zinstall modules_install dtbs_install \ ARCH="$_carch" \ + LLVM=1 \ INSTALL_PATH="$pkgdir"/boot \ INSTALL_MOD_PATH="$pkgdir" \ INSTALL_MOD_STRIP=1 \