bump to 3.6.3, added module initialisation patches, readded memgroups

This commit is contained in:
Tobias Powalowski
2012-10-22 12:12:03 +00:00
parent 813cdaf105
commit 6f1e66def0
6 changed files with 170 additions and 12 deletions

View File

@@ -5,7 +5,7 @@
pkgbase=linux # Build stock -ARCH kernel
#pkgbase=linux-custom # Build kernel with a different name
_srcname=linux-3.6
pkgver=3.6.2
pkgver=3.6.3
pkgrel=1
arch=('i686' 'x86_64')
url="http://www.kernel.org/"
@@ -18,13 +18,17 @@ source=("http://www.kernel.org/pub/linux/kernel/v3.x/${_srcname}.tar.xz"
'config' 'config.x86_64'
# standard config files for mkinitcpio ramdisk
'linux.preset'
'change-default-console-loglevel.patch')
'change-default-console-loglevel.patch'
'module-symbol-waiting-3.6.patch'
'module-init-wait-3.6.patch')
md5sums=('1a1760420eac802c541a20ab51a093d1'
'ad1020c82a71ee1ef2416a0d12e724df'
'443f285744cb96401f9a631f542b9248'
'2793e97a9e98c501afd3e18d2e3b9762'
'96701113d37ef4f9b785206ab8bcc71e'
'65f7ff39775f20f65014383564d3cb65'
'3adbfa45451c4bcf9dd7879bed033d77'
'eb14dcfd80c00852ef81ded6e826826a'
'9d3c56a4b999c8bfbd4018089a62f662')
'9d3c56a4b999c8bfbd4018089a62f662'
'670931649c60fcb3ef2e0119ed532bd4'
'8a71abc4224f575008f974a099b5cf6f')
_kernelname=${pkgbase#linux}
@@ -42,6 +46,11 @@ build() {
# (relevant patch sent upstream: https://lkml.org/lkml/2011/7/26/227)
patch -Np1 -i "${srcdir}/change-default-console-loglevel.patch"
# fix module initialisation
# https://bugs.archlinux.org/task/32122
patch -Np1 -i "${srcdir}/module-symbol-waiting-3.6.patch"
patch -Np1 -i "${srcdir}/module-init-wait-3.6.patch"
if [ "${CARCH}" = "x86_64" ]; then
cat "${srcdir}/config.x86_64" > ./.config
else
@@ -306,4 +315,4 @@ for _p in ${pkgname[@]}; do
}"
done
# vim:set ts=8 sts=2 sw=2 et:
# vim:set ts=8 sts=2 sw=2 et: