pmaports/device/linux-htc-vision/APKBUILD
Matthias Berndt 4f6f417089
htc-vision: make wifi work and disable Kineto GAN (!225)
I didn't get it to work with NetworkManager, but it does work with
connman. Disable Kineto GAN, which caused various commands to misbehave
(just like it did on the htc-ace).

[ci:skip-build]: already built successfully in CI
2019-02-28 09:49:11 +01:00

65 lines
2.2 KiB
Text

pkgver=3.0.101
pkgrel=1
pkgdesc="HTC Desire Z kernel from milaq"
arch="armhf"
_carch="arm"
_flavor="htc-vision"
_hash="4bc19919f805777947c243e6c2ed41ece530488b"
pkgname="linux-${_flavor}"
url="https://github.com/milaq/android_kernel_htc_vision"
license="GPL-2.0-only"
options="!strip !check !tracedeps"
makedepends="perl sed installkernel bash gmp-dev bc linux-headers elfutils-dev devicepkg-dev xz gcc6"
if [ "${CC:0:5}" != "gcc6-" ]; then
CC="gcc6-$CC"
HOSTCC="gcc6-gcc"
CROSS_COMPILE="gcc6-$CROSS_COMPILE"
fi
# Source
_config="config-${_flavor}.${arch}"
source="
$pkgname-$_hash.zip::https://github.com/milaq/android_kernel_htc_vision/archive/cm-11.0.zip
$_config
02_gpu-msm-fix-gcc5-compile.patch
fix-boot-gcc5.patch
"
builddir="$srcdir/android_kernel_htc_vision-cm-11.0"
prepare() {
default_prepare
downstreamkernel_prepare "$srcdir" "$builddir" "$_config" "$_carch" "$HOSTCC"
}
build() {
unset LDFLAGS
make ARCH="$_carch" CC="${CC:-gcc}" \
KBUILD_BUILD_VERSION="$((pkgrel + 1 ))-postmarketOS"
}
package() {
# kernel.release
install -D "$builddir/include/config/kernel.release" \
"$pkgdir/usr/share/kernel/$_flavor/kernel.release"
# zImage (find the right one)
cd "$builddir/arch/$_carch/boot"
_target="$pkgdir/boot/vmlinuz-$_flavor"
for _zimg in zImage-dtb Image.gz-dtb *zImage Image; do
[ -e "$_zimg" ] || continue
msg "zImage found: $_zimg"
install -Dm644 "$_zimg" "$_target"
break
done
if ! [ -e "$_target" ]; then
error "Could not find zImage in $PWD!"
return 1
fi
}
sha512sums="5020a534a0f8475666d4d036584ce7279eea3d59c0380dcd2d80367651a02f668aab2eb6177f0f030cc03933800ae1a1b8bcfc063c2f35b4f9cabec276a8c620 linux-htc-vision-4bc19919f805777947c243e6c2ed41ece530488b.zip
823ab7f601114e3775a45658900c3254466bdffbe48800a5d00719d48c21f8d6337c57121cf3f117b00ce3c7574c76f1c859344cb352bee1214881ed22803b29 config-htc-vision.armhf
7be03a9e78b7ac330a54b1f00509caa0621a95c0c55901878ad757f9dd69cc05ba2c8b5ea987063ae1224f92c4d090d515fa5d369e7755181a4871b0d0f82881 02_gpu-msm-fix-gcc5-compile.patch
5ea8c150174224791466ae66e13f44b567c447382e348612e2b0f58d85d499a348a6b24cd5bd1f979631e9610cbe490a5dbe213275d13d4376964268ab3d88ea fix-boot-gcc5.patch"