pmaports/device/testing/linux-postmarketos-qcom-sc8180x/APKBUILD
Clayton Craft 0c1113b3ec
linux-*: enable NLS_ASCII for kernels that support EFI boot (MR 5136)
These kernels must have NLS_ASCII set after bb6d7a05b, or else they
cannot mount the ESP as /boot and boot fails. This kconfig option will
be added to the pmb efi kconfig check so that this is caught in the
future pre-merge.

fixes 3909b1dbf and bb6d7a05b

[ci:skip-build] already built successfully in CI
2024-05-16 22:48:41 -07:00

56 lines
1.7 KiB
Text

# Maintainer: Jenneron <jenneron@protonmail.com>
pkgname=linux-postmarketos-qcom-sc8180x
pkgver=6.6.0
pkgrel=1
pkgdesc="Mainline Kernel fork for Snadpragon 8cx 1st generation devices"
arch="aarch64"
_carch="arm64"
_flavor="${pkgname#linux-}"
url="https://gitlab.com/sc8180x-mainline/linux"
license="GPL-2.0-only"
options="!strip !check !tracedeps
pmb:cross-native
pmb:kconfigcheck-community
pmb:kconfigcheck-uefi"
makedepends="bash bison findutils flex installkernel openssl-dev perl"
_commit="27c30b32783351f6ca31c619cbf42697e7208f3d"
_config="config-$_flavor.$arch"
# Source
source="
linux-$_commit.tar.gz::https://gitlab.com/sc8180x-mainline/linux/-/archive/$_commit/linux-$commit.tar.gz
$_config
"
builddir="$srcdir/linux-$_commit"
prepare() {
default_prepare
cp "$srcdir/config-$_flavor.$arch" .config
}
build() {
unset LDFLAGS
make ARCH="$_carch" CC="${CC:-gcc}" \
KBUILD_BUILD_VERSION="$((pkgrel + 1 ))-$_flavor"
}
package() {
install -Dm644 "$builddir/arch/$_carch/boot/vmlinuz.efi" \
"$pkgdir/boot/vmlinuz"
make modules_install dtbs_install \
ARCH="$_carch" \
INSTALL_PATH="$pkgdir"/boot/ \
INSTALL_MOD_PATH="$pkgdir" \
INSTALL_MOD_STRIP=1 \
INSTALL_DTBS_PATH="$pkgdir"/boot/dtbs
rm -f "$pkgdir"/lib/modules/*/build "$pkgdir"/lib/modules/*/source
install -D "$builddir"/include/config/kernel.release \
"$pkgdir"/usr/share/kernel/$_flavor/kernel.release
}
sha512sums="
71a29d0e2dfc33ee264cba21b0af1bcf45b2b75a7152a7dd961d325af4e8abf076cb801d181527d65dceef173cadb2b6db3b0b8bdd1cd4afeb38ffce9a452c09 linux-27c30b32783351f6ca31c619cbf42697e7208f3d.tar.gz
121e0d17f8e73383a8e0a02efc2d88a8ea56988402b531274767756d420bed022a5c219ed46ff3c66848c22addbcf33a8094092ddae9dcc945e06846b4c867be config-postmarketos-qcom-sc8180x.aarch64
"