core/linux-raspberrypi4 to 5.10.25-2

Commit adds patch to fix issues with 10-bit HVEC content when zoomed.[1]

1. https://forum.kodi.tv/showthread.php?tid=361164&pid=3024654#pid3024654
This commit is contained in:
graysky 2021-03-22 16:08:00 -04:00
parent 8f640c48f1
commit 86c2e1fc06

View file

@ -11,7 +11,7 @@ _srcname=linux-${_commit}
_kernelname=${pkgbase#linux} _kernelname=${pkgbase#linux}
_desc="Raspberry Pi 4" _desc="Raspberry Pi 4"
pkgver=5.10.25 pkgver=5.10.25
pkgrel=1 pkgrel=2
arch=('armv7h' 'aarch64') arch=('armv7h' 'aarch64')
url="http://www.kernel.org/" url="http://www.kernel.org/"
license=('GPL2') license=('GPL2')
@ -24,6 +24,7 @@ source=("https://github.com/raspberrypi/linux/archive/${_commit}.tar.gz"
'90-linux.hook' '90-linux.hook'
0001-Make-proc-cpuinfo-consistent-on-arm64-and-arm.patch 0001-Make-proc-cpuinfo-consistent-on-arm64-and-arm.patch
0002-vc4-drm-vc4_plane-remove-subpixel-positioning-check.patch::https://patch-diff.githubusercontent.com/raw/raspberrypi/linux/pull/4215.patch 0002-vc4-drm-vc4_plane-remove-subpixel-positioning-check.patch::https://patch-diff.githubusercontent.com/raw/raspberrypi/linux/pull/4215.patch
0003-vc4-drm-fix-source-offsets-with-drm_format_p030.patch::https://github.com/popcornmix/linux/commit/6f33f7fa8b60700a96a8fbd497efeb5c2e8bf2b9.patch
) )
source_armv7h=('config' 'config.txt') source_armv7h=('config' 'config.txt')
source_aarch64=('config8' 'config8.txt') source_aarch64=('config8' 'config8.txt')
@ -33,7 +34,8 @@ md5sums=('a4f3c64c40de2442cc06dc1e4ae6d9e9'
'ce6c81ad1ad1f8b333fd6077d47abdaf' 'ce6c81ad1ad1f8b333fd6077d47abdaf'
'441ec084c47cddc53e592fb0cbce4edf' '441ec084c47cddc53e592fb0cbce4edf'
'f66a7ea3feb708d398ef57e4da4815e9' 'f66a7ea3feb708d398ef57e4da4815e9'
'ce0949a5704dfcddc25382118600e813') 'ce0949a5704dfcddc25382118600e813'
'021c743bd96a27100c786ba10a202ceb')
md5sums_armv7h=('564213efed2fedecef1ea219c102cf2b' md5sums_armv7h=('564213efed2fedecef1ea219c102cf2b'
'9669d916a5929a2eedbd64477f83d99e') '9669d916a5929a2eedbd64477f83d99e')
md5sums_aarch64=('4e701f76ed19fb6072b3857d2ac6210c' md5sums_aarch64=('4e701f76ed19fb6072b3857d2ac6210c'
@ -54,8 +56,12 @@ prepare() {
# don't run depmod on 'make install'. We'll do this ourselves in packaging # don't run depmod on 'make install'. We'll do this ourselves in packaging
sed -i '2iexit 0' scripts/depmod.sh sed -i '2iexit 0' scripts/depmod.sh
# consistent behavior of lscpu on arm/arm64
patch -Np1 -i ../0001-Make-proc-cpuinfo-consistent-on-arm64-and-arm.patch patch -Np1 -i ../0001-Make-proc-cpuinfo-consistent-on-arm64-and-arm.patch
# the following fix known issues with ffmpeg/kodi HW-decoding
patch -Np1 -i ../0002-vc4-drm-vc4_plane-remove-subpixel-positioning-check.patch patch -Np1 -i ../0002-vc4-drm-vc4_plane-remove-subpixel-positioning-check.patch
patch -Np1 -i ../0003-vc4-drm-fix-source-offsets-with-drm_format_p030.patch
} }
build() { build() {