upgpkg: 3.17.3-1

This commit is contained in:
Thomas Bächler
2014-11-14 22:26:26 +00:00
parent 89b8ecf64e
commit e9963cc887
3 changed files with 30 additions and 17 deletions

View File

@@ -4,7 +4,7 @@
pkgbase=linux # Build stock -ARCH kernel
#pkgbase=linux-custom # Build kernel with a different name
_srcname=linux-3.17
pkgver=3.17.2
pkgver=3.17.3
pkgrel=1
arch=('i686' 'x86_64')
url="http://www.kernel.org/"
@@ -18,13 +18,15 @@ source=("https://www.kernel.org/pub/linux/kernel/v3.x/${_srcname}.tar.xz"
# standard config files for mkinitcpio ramdisk
'linux.preset'
'change-default-console-loglevel.patch'
'fix_CPU0_microcode_on_resume.patch'
)
sha256sums=('f5153ec93c5fcd41b247950e6a9bcbc63fa87beafd112c133a622439a0f76251'
'4576c30a46c016502cdd007d28dde4f2d141c0f8096be8623a9ff519323db777'
'3c1ba3cc89d0f2d5f7303f448495f64db1ab96efea5f5fdd4b4c8c547600f85d'
'0f1cd431115a2ce84629298d054d5e6f6e78095a3aeda4d1335740c9402efb7e'
'fb688bc7ccfa636990b26aecfe62500bc1e0f6c410a837eef03014c161df2ec8'
'f0d90e756f14533ee67afda280500511a62465b4f76adcc5effa95a40045179c'
'1256b241cd477b265a3c2d64bdc19ffe3c9bbcee82ea3994c590c2c76e767d99')
'1256b241cd477b265a3c2d64bdc19ffe3c9bbcee82ea3994c590c2c76e767d99'
'43668fe46147fe93f41b919db673574427ce5a8c376cd28ddddcbf3a00326491')
_kernelname=${pkgbase#linux}
@@ -42,6 +44,10 @@ prepare() {
# (relevant patch sent upstream: https://lkml.org/lkml/2011/7/26/227)
patch -p1 -i "${srcdir}/change-default-console-loglevel.patch"
# Fix FS#42689
# https://bugzilla.kernel.org/show_bug.cgi?id=88001
patch -p1 -i "${srcdir}/fix_CPU0_microcode_on_resume.patch"
if [ "${CARCH}" = "x86_64" ]; then
cat "${srcdir}/config.x86_64" > ./.config
else