summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDerek J. Clark2022-11-30 15:28:19 -0800
committerDerek J. Clark2022-11-30 15:28:19 -0800
commitd26bc2561c0bb30a73e63eed397c90bfcb97b958 (patch)
tree63aff214c2466221366dce42ee8a1f80de7ec028
parent0dc13757b0f094d9cc908ecdc840ec11731452bd (diff)
downloadaur-d26bc2561c0bb30a73e63eed397c90bfcb97b958.tar.gz
Use only the suspend fix. All other fixes are solved in stable kernel.
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD13
2 files changed, 6 insertions, 11 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 038a4c8b2cda..be9af5fa0ec5 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,12 +1,12 @@
pkgbase = rz608-fix-git
pkgdesc = Allows use of the RZ608/MT7921K WiFi module.
- pkgver = 22.07.r3.0a9df20
+ pkgver = 22.11.r3.0a9df20
pkgrel = 1
url = https://github.com/ShadowBlip/rz608-fix
arch = any
license = GPL
makedepends = git
- source = rz608-fix::git+https://github.com/ShadowBlip/rz608-fix.git
+ source = rz608-fix::git+https://github.com/ShadowBlip/rz608-fix.git#tag=0a9df20dd438cfc4c1760c8d0f562d19e75c0ac7
sha256sums = SKIP
pkgname = rz608-fix-git
diff --git a/PKGBUILD b/PKGBUILD
index 6796aeb82c56..e4afc9074cff 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Derek J. Clark <derekjohn dot clark at gmail dot com>
pkgname=rz608-fix-git
_gitdir=rz608-fix
-pkgver=22.07.r3.0a9df20
+pkgver=22.11.r3.0a9df20
pkgrel=1
pkgdesc="Allows use of the RZ608/MT7921K WiFi module."
arch=('any')
@@ -11,7 +11,8 @@ groups=()
depends=()
optdepends=()
makedepends=('git')
-source=("${_gitdir}::git+https://github.com/ShadowBlip/${_gitdir}.git")
+_tag=0a9df20dd438cfc4c1760c8d0f562d19e75c0ac7
+source=("${_gitdir}::git+https://github.com/ShadowBlip/${_gitdir}.git#tag=${_tag}")
sha256sums=('SKIP')
pkgver() {
cd "$srcdir/${_gitdir}"
@@ -19,14 +20,8 @@ pkgver() {
}
package() {
cd "$srcdir/${_gitdir}"
- mkdir -p ${pkgdir}/etc/udev/rules.d
- mkdir -p ${pkgdir}/etc/modprobe.d
- mkdir -p ${pkgdir}/etc/systemd/system
+ mkdir -p ${pkgdir}/etc
mkdir -p ${pkgdir}/usr/lib/systemd/system-sleep
- mkdir -p ${pkgdir}/usr/lib/systemd/system-shutdown
- install -m 644 99-rz608.rules ${pkgdir}/etc/udev/rules.d/99-rz608.rules
- install -m 644 rz608.conf ${pkgdir}/etc/modprobe.d/rz608.conf
install -m644 systemd-suspend-mods.conf ${pkgdir}/etc/systemd-suspend-mods.conf
install -m744 systemd-suspend-mods.sh ${pkgdir}/usr/lib/systemd/system-sleep/systemd-suspend-mods.sh
- install -m744 mt7921e.shutdown ${pkgdir}/usr/lib/systemd/system-shutdown/mt7921e.shutdown
}