4.16.5-1 (clr 4.16.4-556)
This commit is contained in:
parent
33a410d710
commit
88d5392214
2 changed files with 15 additions and 15 deletions
12
.SRCINFO
12
.SRCINFO
|
@ -1,6 +1,6 @@
|
|||
pkgbase = linux-clear
|
||||
pkgver = 4.16.4
|
||||
pkgrel = 2
|
||||
pkgver = 4.16.5
|
||||
pkgrel = 1
|
||||
url = https://github.com/clearlinux-pkgs/linux
|
||||
arch = x86_64
|
||||
license = GPL2
|
||||
|
@ -14,9 +14,9 @@ pkgbase = linux-clear
|
|||
options = !strip
|
||||
source = https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.16.tar.xz
|
||||
source = https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.16.tar.sign
|
||||
source = https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.16.4.xz
|
||||
source = https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.16.4.sign
|
||||
source = clearlinux::git+https://github.com/clearlinux-pkgs/linux.git#tag=4.16.3-555
|
||||
source = https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.16.5.xz
|
||||
source = https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.16.5.sign
|
||||
source = clearlinux::git+https://github.com/clearlinux-pkgs/linux.git#tag=4.16.4-556
|
||||
source = https://downloadmirror.intel.com/27591/eng/microcode-20180312.tgz
|
||||
source = 60-linux.hook
|
||||
source = 90-linux.hook
|
||||
|
@ -26,7 +26,7 @@ pkgbase = linux-clear
|
|||
validpgpkeys = 647F28654894E3BD457199BE38DBBDC86092693E
|
||||
sha256sums = 63f6dc8e3c9f3a0273d5d6f4dca38a2413ca3a5f689329d05b750e4c87bb21b9
|
||||
sha256sums = SKIP
|
||||
sha256sums = bad271dbda2d024daf4a2ab6e122b95b262ea80508ac8018bc61e8aa44f40cfe
|
||||
sha256sums = 8c3bb050d11da6e91d3e169f76ee3ed6937e1ca64264e605ddba8108696ba011
|
||||
sha256sums = SKIP
|
||||
sha256sums = SKIP
|
||||
sha256sums = 0b381face2df1b0a829dc4fa8fa93f47f39e11b1c9c22ebd44f8614657c1e779
|
||||
|
|
18
PKGBUILD
18
PKGBUILD
|
@ -3,10 +3,10 @@
|
|||
|
||||
pkgbase=linux-clear
|
||||
__basekernel=4.16
|
||||
_minor=4
|
||||
_minor=5
|
||||
pkgver=${__basekernel}.${_minor}
|
||||
_clearver=${__basekernel}.3-555
|
||||
pkgrel=2
|
||||
_clearver=${__basekernel}.4-556
|
||||
pkgrel=1
|
||||
arch=('x86_64')
|
||||
url="https://github.com/clearlinux-pkgs/linux"
|
||||
license=('GPL2')
|
||||
|
@ -30,7 +30,7 @@ validpgpkeys=(
|
|||
)
|
||||
sha256sums=('63f6dc8e3c9f3a0273d5d6f4dca38a2413ca3a5f689329d05b750e4c87bb21b9'
|
||||
'SKIP'
|
||||
'bad271dbda2d024daf4a2ab6e122b95b262ea80508ac8018bc61e8aa44f40cfe'
|
||||
'8c3bb050d11da6e91d3e169f76ee3ed6937e1ca64264e605ddba8108696ba011'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'0b381face2df1b0a829dc4fa8fa93f47f39e11b1c9c22ebd44f8614657c1e779'
|
||||
|
@ -47,17 +47,17 @@ prepare() {
|
|||
# add upstream patch
|
||||
patch -p1 -i ../patch-${pkgver}
|
||||
|
||||
cp -Tf $srcdir/clearlinux/config .config
|
||||
cp -a /usr/lib/firmware/i915 firmware/
|
||||
cp -a ${srcdir}/intel-ucode firmware/
|
||||
rm -f firmware/intel-ucode/0f*
|
||||
|
||||
# Apply clearlinux patches
|
||||
for i in $(grep '^Patch' ${srcdir}/clearlinux/linux.spec | grep -Ev '^Patch0115|^Patch0410|^Patch0500|^Patch200' | sed -n 's/.*: //p'); do
|
||||
msg "Applying ${i}"
|
||||
patch -p1 -i "$srcdir/clearlinux/${i}"
|
||||
done
|
||||
|
||||
cp -Tf $srcdir/clearlinux/config .config
|
||||
cp -a /usr/lib/firmware/i915 firmware/
|
||||
cp -a ${srcdir}/intel-ucode firmware/
|
||||
rm -f firmware/intel-ucode/0f*
|
||||
|
||||
if [ "${_kernelname}" != "" ]; then
|
||||
sed -i "s|CONFIG_LOCALVERSION=.*|CONFIG_LOCALVERSION=\"${_kernelname}\"|g" ./.config
|
||||
sed -i "s|CONFIG_LOCALVERSION_AUTO=.*|CONFIG_LOCALVERSION_AUTO=n|" ./.config
|
||||
|
|
Loading…
Reference in a new issue