Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] rpi*-kernel: update to 5.10.90.
@ 2022-01-09 10:45 JamiKettunen
  2022-01-09 13:15 ` JamiKettunen
                   ` (20 more replies)
  0 siblings, 21 replies; 22+ messages in thread
From: JamiKettunen @ 2022-01-09 10:45 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1563 bytes --]

There is a new pull request by JamiKettunen against master on the void-packages repository

https://github.com/JamiKettunen/void-packages rpi-zero-2-w-support
https://github.com/void-linux/void-packages/pull/34962

rpi*-kernel: update to 5.10.90.
This enables support for the Raspberry Pi Zero 2 W (adds `/boot/bcm2710-rpi-zero-2.dtb`) as well as brings the kernels up to the latest stable merge commit on [raspberrypi/linux @ rpi-5.10.y](https://github.com/raspberrypi/linux/commit/1ef86d0084b5fcc6910f8e9aa9a6232457444e92).

<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **NO** (I'd like help here, I don't own any rpis)

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please [skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration)
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!-- 
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/34962.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-rpi-zero-2-w-support-34962.patch --]
[-- Type: text/x-diff, Size: 4593 bytes --]

From b430b6d08f8c5183b0ab5ce9ab519654156641aa Mon Sep 17 00:00:00 2001
From: Jami Kettunen <jami.kettunen@protonmail.com>
Date: Fri, 7 Jan 2022 16:45:17 +0200
Subject: [PATCH] rpi*-kernel: update to 5.10.90.

This enables support for the Raspberry Pi Zero 2 W.
---
 srcpkgs/rpi-kernel/template  | 8 ++++----
 srcpkgs/rpi2-kernel/template | 6 +++---
 srcpkgs/rpi3-kernel/template | 6 +++---
 srcpkgs/rpi4-kernel/template | 6 +++---
 4 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/srcpkgs/rpi-kernel/template b/srcpkgs/rpi-kernel/template
index 81a8c484d0a3..ace66631b5ef 100644
--- a/srcpkgs/rpi-kernel/template
+++ b/srcpkgs/rpi-kernel/template
@@ -8,15 +8,15 @@
 # Commit hash is picked from latest tag [1], if appropriate, or from latest
 # "Merge remote-tracking branch 'stable/linux-5.10.y' into rpi-5.10.y" commit.
 #
-# [1] https://github.com/raspberrypi/linux/releases
+# [1] https://github.com/raspberrypi/linux/tags
 #
 # WARNING: keep all rpi*-kernel packages in sync
 
-_githash="86729e78125d4f3d203457940feee8bc97b11f6c"
+_githash="1ef86d0084b5fcc6910f8e9aa9a6232457444e92"
 _gitshort="${_githash:0:7}"
 
 pkgname=rpi-kernel
-version=5.10.52
+version=5.10.90
 revision=1
 archs="armv6l*"
 wrksrc="linux-${_githash}"
@@ -27,7 +27,7 @@ homepage="http://www.kernel.org"
 license="GPL-2.0-only"
 short_desc="Linux kernel for Raspberry Pi zero/1 (${version%.*} series [git ${_gitshort}])"
 distfiles="https://github.com/raspberrypi/linux/archive/${_githash}.tar.gz"
-checksum=a25a7dfce4c2ca5bdca39ddab5e43539d9b04900b0dbefe19f4f9b053e59968c
+checksum=1f7f6b516ad468ff864aa85cccafdf5578cb3ca5b412c9d73fe6d8c763406ef9
 python_version=3
 
 _kernver="${version}_${revision}"
diff --git a/srcpkgs/rpi2-kernel/template b/srcpkgs/rpi2-kernel/template
index cc861a0a261a..4f46d9047f13 100644
--- a/srcpkgs/rpi2-kernel/template
+++ b/srcpkgs/rpi2-kernel/template
@@ -1,11 +1,11 @@
 # Template file for 'rpi2-kernel'
 # See rpi-kernel for version policy
 
-_githash="86729e78125d4f3d203457940feee8bc97b11f6c"
+_githash="1ef86d0084b5fcc6910f8e9aa9a6232457444e92"
 _gitshort="${_githash:0:7}"
 
 pkgname=rpi2-kernel
-version=5.10.52
+version=5.10.90
 revision=1
 archs="armv7l*"
 wrksrc="linux-${_githash}"
@@ -16,7 +16,7 @@ homepage="http://www.kernel.org"
 license="GPL-2.0-only"
 short_desc="Linux kernel for Raspberry Pi 2 (${version%.*} series [git ${_gitshort}])"
 distfiles="https://github.com/raspberrypi/linux/archive/${_githash}.tar.gz"
-checksum=a25a7dfce4c2ca5bdca39ddab5e43539d9b04900b0dbefe19f4f9b053e59968c
+checksum=1f7f6b516ad468ff864aa85cccafdf5578cb3ca5b412c9d73fe6d8c763406ef9
 python_version=3
 
 _kernver="${version}_${revision}"
diff --git a/srcpkgs/rpi3-kernel/template b/srcpkgs/rpi3-kernel/template
index 0dd5ce9593db..4f55d60a48a9 100644
--- a/srcpkgs/rpi3-kernel/template
+++ b/srcpkgs/rpi3-kernel/template
@@ -1,11 +1,11 @@
 # Template file for 'rpi3-kernel'
 # See rpi-kernel for version policy
 
-_githash="86729e78125d4f3d203457940feee8bc97b11f6c"
+_githash="1ef86d0084b5fcc6910f8e9aa9a6232457444e92"
 _gitshort="${_githash:0:7}"
 
 pkgname=rpi3-kernel
-version=5.10.52
+version=5.10.90
 revision=1
 archs="aarch64*"
 wrksrc="linux-${_githash}"
@@ -16,7 +16,7 @@ homepage="http://www.kernel.org"
 license="GPL-2.0-only"
 short_desc="Linux kernel for Raspberry Pi 3 (${version%.*} series [git ${_gitshort}])"
 distfiles="https://github.com/raspberrypi/linux/archive/${_githash}.tar.gz"
-checksum=a25a7dfce4c2ca5bdca39ddab5e43539d9b04900b0dbefe19f4f9b053e59968c
+checksum=1f7f6b516ad468ff864aa85cccafdf5578cb3ca5b412c9d73fe6d8c763406ef9
 python_version=3
 
 _kernver="${version}_${revision}"
diff --git a/srcpkgs/rpi4-kernel/template b/srcpkgs/rpi4-kernel/template
index 9ddae3fac5a3..84b1f0f6df23 100644
--- a/srcpkgs/rpi4-kernel/template
+++ b/srcpkgs/rpi4-kernel/template
@@ -1,11 +1,11 @@
 # Template file for 'rpi4-kernel'
 # See rpi-kernel for version policy
 
-_githash="86729e78125d4f3d203457940feee8bc97b11f6c"
+_githash="1ef86d0084b5fcc6910f8e9aa9a6232457444e92"
 _gitshort="${_githash:0:7}"
 
 pkgname=rpi4-kernel
-version=5.10.52
+version=5.10.90
 revision=1
 archs="aarch64*"
 wrksrc="linux-${_githash}"
@@ -16,7 +16,7 @@ homepage="http://www.kernel.org"
 license="GPL-2.0-only"
 short_desc="Linux kernel for Raspberry Pi 4 (${version%.*} series [git ${_gitshort}])"
 distfiles="https://github.com/raspberrypi/linux/archive/${_githash}.tar.gz"
-checksum=a25a7dfce4c2ca5bdca39ddab5e43539d9b04900b0dbefe19f4f9b053e59968c
+checksum=1f7f6b516ad468ff864aa85cccafdf5578cb3ca5b412c9d73fe6d8c763406ef9
 python_version=3
 conflicts=rpi3-kernel
 

^ permalink raw reply	[flat|nested] 22+ messages in thread

end of thread, other threads:[~2022-02-01 21:14 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-09 10:45 [PR PATCH] rpi*-kernel: update to 5.10.90 JamiKettunen
2022-01-09 13:15 ` JamiKettunen
2022-01-09 13:16 ` JamiKettunen
2022-01-09 13:25 ` ahesford
2022-01-09 13:29 ` JamiKettunen
2022-01-09 13:29 ` Duncaen
2022-01-09 13:30 ` JamiKettunen
2022-01-09 13:31 ` Duncaen
2022-01-09 13:37 ` [PR PATCH] [Updated] " JamiKettunen
2022-01-09 19:40 ` JamiKettunen
2022-01-09 19:41 ` JamiKettunen
2022-01-09 19:42 ` JamiKettunen
2022-01-10 16:57 ` marmeladema
2022-01-21 21:18 ` [PR PATCH] [Updated] " JamiKettunen
2022-01-21 21:21 ` JamiKettunen
2022-01-22 19:51 ` rpi*-kernel: update to 5.10.92 classabbyamp
2022-01-22 19:56 ` classabbyamp
2022-01-27 18:21 ` karlgrose
2022-01-27 18:22 ` karlgrose
2022-01-27 18:23 ` karlgrose
2022-01-27 18:24 ` karlgrose
2022-02-01 21:14 ` [PR PATCH] [Merged]: " leahneukirchen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).