33cce38062
This adds basic functionality for the Moto One Hyper. The device boots with rootfs on sd, booted by 'pmbootstrap flasher boot'. USB net works, and i can ssh in. There is no framebuffer device, but weston works with the drm backend instead of fbdev. Touchscreen support is not implemented yet, but i will update this with support when i get the chance. Most other functionality either does not seem to work yet or has not been tested (wifi, audio, modem, etc).
23 lines
771 B
Text
23 lines
771 B
Text
# Contributor: ky0ko <ky0ko@disroot.org>
|
|
# Maintainer: ky0ko <ky0ko@disroot.org>
|
|
pkgname=firmware-motorola-def
|
|
pkgver=1
|
|
pkgrel=0
|
|
pkgdesc="Firmware for Motorola One Hyper"
|
|
url="https://github.com/goshhhy/motorola-def-firmware"
|
|
arch="aarch64"
|
|
license="proprietary"
|
|
options="!check !strip !archcheck"
|
|
|
|
# Sources
|
|
_commit="8575cc1ad407a37126beb625a7d53581af02cfb4"
|
|
source="https://github.com/goshhhy/motorola-def-firmware/archive/$_commit.tar.gz"
|
|
|
|
package() {
|
|
cd "$srcdir/motorola-def-firmware-$_commit/files"
|
|
for _i in *; do
|
|
install -Dm644 $_i "$pkgdir"/lib/firmware/$_i
|
|
done
|
|
}
|
|
|
|
sha512sums="eb9840066863775a2d4edd06849438be41cfa765b557bab30d3ef69b1c1d715ec67b876d4dff18a7fb29a6aaeccab78702da3ce137876e087f162bf669b68766 8575cc1ad407a37126beb625a7d53581af02cfb4.tar.gz"
|