pmaports/device/testing/linux-hisense-m470bsa/APKBUILD
Luca Weiss c57aa7b299
device/*/linux-*: enable CONFIG_TMPFS_POSIX_ACL (MR 1939)
This is required by some software, e.g. bluez/gnome to set some ACLs on
/dev/rfkill (see #904). While probably nobody will notice on the
downstream kernels (as we don't have any proper software there anyways)
it's definitely needed on mainline-ish kernels. Surprisingly only one
kernel has broken by enabling this option (linux-sony-tulip) which I've
patched up.

linux-postmarketos-qcom-sdm660 did not break by enabling this option,
but required linux4.17-gcc10-extern_YYLOC_global_declaration.patch to
build again, so this was fixed too.

[ci:skip-build] [ci:ignore-count]
2021-02-09 21:54:35 +01:00

66 lines
2.4 KiB
Text

# Reference: <https://postmarketos.org/vendorkernel>
# Kernel config based on: arch/arm/configs/m470_v2_dopa1_defconfig
pkgname=linux-hisense-m470bsa
pkgver=3.1.10
pkgrel=2
pkgdesc="Hisense Sero 7 Pro kernel fork"
arch="armv7"
_carch="arm"
_flavor="hisense-m470bsa"
url="https://kernel.org"
license="GPL-2.0-only"
options="!strip !check !tracedeps pmb:cross-native"
makedepends="perl sed installkernel bash gmp-dev bc linux-headers elfutils-dev devicepkg-dev gcc6 xz"
# Compiler: GCC 6 (doesn't boot when compiled with newer versions)
if [ "${CC:0:5}" != "gcc6-" ]; then
CC="gcc6-$CC"
HOSTCC="gcc6-gcc"
CROSS_COMPILE="gcc6-$CROSS_COMPILE"
fi
# Source
_repository="android_kernel_hisense_m470bsa"
_commit="7af4a85198eb80cdb6964bd0550f6f5ea722274c"
_config="config-$_flavor.$arch"
source="
$pkgname-$_commit.tar.gz::https://github.com/dolorespark/$_repository/archive/$_commit.tar.gz
$_config
"
builddir="$srcdir/$_repository-$_commit"
prepare() {
default_prepare
. downstreamkernel_prepare
}
build() {
unset LDFLAGS
make ARCH="$_carch" CC="${CC:-gcc}" \
KBUILD_BUILD_VERSION="$((pkgrel + 1 ))-postmarketOS"
make ARCH="$_carch" CC="${CC:-gcc}" \
KBUILD_BUILD_VERSION="$((pkgrel + 1 ))-postmarketOS" \
CFLAGS_MODULE=-fno-pic modules
}
package() {
downstreamkernel_package "$builddir" "$pkgdir" "$_carch" "$_flavor"
echo "--[ Installing modules ]--"
install -Dm644 "$builddir/drivers/net/wireless/bcmdhd/bcmdhd.ko" \
"$pkgdir/lib/modules/3.1.10-postmarketos/bcmdhd.ko"
install -Dm644 "$builddir/drivers/net/usb/raw_ip_net.ko" \
"$pkgdir/lib/modules/3.1.10-postmarketos/raw_ip_net.ko"
install -Dm644 "$builddir/net/mac80211/mac80211.ko" \
"$pkgdir/lib/modules/3.1.10-postmarketos/mac80211.ko"
install -Dm644 "$builddir/net/wireless/cfg80211.ko" \
"$pkgdir/lib/modules/3.1.10-postmarketos/cfg80211.ko"
install -Dm644 "$builddir/net/wireless/lib80211.ko" \
"$pkgdir/lib/modules/3.1.10-postmarketos/lib80211.ko"
install -Dm644 "$builddir/drivers/scsi/scsi_wait_scan.ko" \
"$pkgdir/lib/modules/3.1.10-postmarketos/scsi_wait_scan.ko"
}
sha512sums="e9089411df58f64e0cb1ff8c2027cc4262f6bc1bc3bedebcc69d8417c99ab24d1520f2668287ed79bd84f45bfd660dee5199271504ce574beb8d9c7d089ae651 linux-hisense-m470bsa-7af4a85198eb80cdb6964bd0550f6f5ea722274c.tar.gz
692206d794ed67a095f06cfcdd3329436feb869bbdb6e77ddeea3b4a7e7f3d61328d6d19b3ffbc1fc62715f91a7948daad227d787daadde883e153219aba55ec config-hisense-m470bsa.armv7"