16e73360dc
This commit adds support for the Alcatel OneTouch Pop 7S (pop7lte), a 2014 MSM8226-based tablet, using manufacturer's downstream kernel. Currently working: display, USB networking, Weston Firmware is packaged for WiFi and audio but the downstream kernel tree doesn't seem to include drivers for the qcom wlan chip, only wcnss. Additionally, audio mixer config is missing as I haven't been able to find it in the stock Android 4.2.x ROM's filesystem yet. Please note that this commit adds support *only* for model P330X, which is not to be confused with similarly-named incompatible devices, the Pop 7 (also 2014 w/ MT8312) and the Pop 7 LTE (2016 w/ MSM8909). Signed-off-by: Lauren Kelly <lauren.kelly@msn.com>
37 lines
1.2 KiB
Text
37 lines
1.2 KiB
Text
# Contributor: Lauren Kelly <lauren.kelly@msn.com>
|
|
# Maintainer: Lauren Kelly <lauren.kelly@msn.com>
|
|
pkgname=firmware-alcatel-pop7lte
|
|
pkgver=1
|
|
pkgrel=0
|
|
_commit="0f0e5d3036d0554e967ddca84708c2717cae83a6"
|
|
pkgdesc="Firmware files for Alcatel OneTouch Pop 7S"
|
|
url="https://postmarketos.org"
|
|
subpackages="$pkgname-adsp $pkgname-wcnss"
|
|
arch="armv7"
|
|
license="proprietary"
|
|
source="$pkgname-$_commit.tar.gz::https://github.com/thejsa/vendor_alcatel_pop7lte/archive/$_commit.tar.gz"
|
|
|
|
options="!check !strip !archcheck !spdx"
|
|
builddir="$srcdir/vendor_alcatel_pop7lte-$_commit"
|
|
|
|
_fwdir="/lib/firmware/postmarketos"
|
|
|
|
package() {
|
|
# parent package is empty
|
|
mkdir -p "$pkgdir"
|
|
}
|
|
|
|
adsp() {
|
|
depends="adsp-audio"
|
|
pkgdesc="Alcatel OneTouch Pop 7S (pop7lte) audio firmware"
|
|
install -Dm644 "$builddir"/adsp.* -t "$subpkgdir/$_fwdir"
|
|
}
|
|
|
|
wcnss() {
|
|
depends="wcnss-wlan"
|
|
pkgdesc="Alcatel OneTouch Pop 7S (pop7lte) WiFi/BT firmware"
|
|
install -Dm644 "$builddir"/wcnss.* -t "$subpkgdir/$_fwdir"
|
|
install -Dm644 "$builddir"/wlan/prima/WCNSS_* -t "$subpkgdir/$_fwdir"/wlan/prima
|
|
}
|
|
|
|
sha512sums="739fb907606a246cef8084079ea58a5836e3d93d53a38e4e8b5e6f1e458d3dea542b90cf3f7bd647399d4eeab8578f195e8c7b384e90da6bf677aecb391b091c firmware-alcatel-pop7lte-0f0e5d3036d0554e967ddca84708c2717cae83a6.tar.gz"
|