From 0d193279ff6ac59d58645b479a87e40cd0941337 Mon Sep 17 00:00:00 2001 From: Alexey Minnekhanov Date: Sun, 10 Oct 2021 00:02:20 +0300 Subject: [PATCH] main/lk2nd: fix version display on lk2nd screen (MR 2585) When building from tarball git tag is not available. We need to pass version number manually. This chnage is cosmetic, but will allow users to easily identify version and source of their bootloader. --- main/lk2nd/APKBUILD | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/main/lk2nd/APKBUILD b/main/lk2nd/APKBUILD index e25574b37..a4b0b3c72 100644 --- a/main/lk2nd/APKBUILD +++ b/main/lk2nd/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Alexey Minnekhanov pkgname=lk2nd pkgver=0.10.0 -pkgrel=0 +pkgrel=1 pkgdesc="Secondary little kernel (lk) bootloader for several Qualcomm devices" arch="armv7 aarch64" url="https://github.com/msm8916-mainline/lk2nd" @@ -38,9 +38,9 @@ build() { unset PATH export PATH=/usr/sbin:/usr/bin:/sbin:/bin - make TOOLCHAIN_PREFIX=arm-none-eabi- msm8916-secondary - make TOOLCHAIN_PREFIX=arm-none-eabi- msm8974-secondary - make TOOLCHAIN_PREFIX=arm-none-eabi- msm8226-secondary + make LK2ND_VERSION="$pkgver-r$pkgrel-postmarketos" TOOLCHAIN_PREFIX=arm-none-eabi- msm8916-secondary + make LK2ND_VERSION="$pkgver-r$pkgrel-postmarketos" TOOLCHAIN_PREFIX=arm-none-eabi- msm8974-secondary + make LK2ND_VERSION="$pkgver-r$pkgrel-postmarketos" TOOLCHAIN_PREFIX=arm-none-eabi- msm8226-secondary } package() {