From e43ffcdd6f4d48a9266df87a6793c29aaca176fd Mon Sep 17 00:00:00 2001 From: Jens Reidel Date: Fri, 14 Nov 2025 02:57:58 +0100 Subject: [PATCH] linux-postmarketos-rockchip: 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-rockchip/APKBUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/device/community/linux-postmarketos-rockchip/APKBUILD b/device/community/linux-postmarketos-rockchip/APKBUILD index 1aaa687ee..8c9aeeda7 100644 --- a/device/community/linux-postmarketos-rockchip/APKBUILD +++ b/device/community/linux-postmarketos-rockchip/APKBUILD @@ -2,7 +2,7 @@ # Contributor: Quade Curry pkgname=linux-postmarketos-rockchip pkgver=6.12.57 -pkgrel=1 +pkgrel=2 pkgdesc="Mainline kernel for rockchip devices" arch="aarch64" _carch="arm64" @@ -59,6 +59,7 @@ package() { make zinstall modules_install dtbs_install \ ARCH="$_carch" \ + LLVM=1 \ INSTALL_PATH="$pkgdir"/boot/ \ INSTALL_MOD_PATH="$pkgdir" \ INSTALL_MOD_STRIP=1 \