Update linux-drd to 3.14.4
This commit is contained in:
parent
bc0e220543
commit
a800f9e5dd
2 changed files with 3 additions and 25 deletions
|
@ -1,15 +0,0 @@
|
|||
--- linux-2.6/drivers/net/wireless/rtlwifi/rtl8192se/trx.c
|
||||
+++ linux-2.6/drivers/net/wireless/rtlwifi/rtl8192se/trx.c
|
||||
@@ -49,6 +49,12 @@ static u8 _rtl92se_map_hwqueue_to_fwqueu
|
||||
if (ieee80211_is_nullfunc(fc))
|
||||
return QSLT_HIGH;
|
||||
|
||||
+ /* Kernel commit 1bf4bbb4024dcdab changed EAPOL packets to use
|
||||
+ * queue V0 at priority 7; however, the RTL8192SE appears to have
|
||||
+ * that queue at priority 6
|
||||
+ */
|
||||
+ if (skb->priority == 7)
|
||||
+ return QSLT_VO;
|
||||
return skb->priority;
|
||||
}
|
||||
|
|
@ -1,11 +1,11 @@
|
|||
# $Id: PKGBUILD 212094 2014-05-06 20:50:20Z tpowa $
|
||||
# $Id: PKGBUILD 212786 2014-05-15 06:54:34Z tpowa $
|
||||
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
|
||||
# Maintainer: Thomas Baechler <thomas@archlinux.org>
|
||||
|
||||
# pkgbase=linux # Build stock -ARCH kernel
|
||||
pkgbase=linux-drd # Build kernel with a different name
|
||||
_srcname=linux-3.14
|
||||
pkgver=3.14.3
|
||||
pkgver=3.14.4
|
||||
pkgrel=1
|
||||
arch=('i686' 'x86_64')
|
||||
url="http://www.kernel.org/"
|
||||
|
@ -29,13 +29,12 @@ source=("https://www.kernel.org/pub/linux/kernel/v3.x/${_srcname}.tar.xz"
|
|||
'0011-kernfs-fix-removed-error-check.patch'
|
||||
'0012-fix-saa7134.patch'
|
||||
'0013-net-Start-with-correct-mac_len-in-skb_network_protocol.patch'
|
||||
'0014-fix-rtl8192se.patch'
|
||||
'0015-fix-xsdt-validation.patch'
|
||||
'aufs3-standalone::git://git.code.sf.net/p/aufs/aufs3-standalone#branch=aufs3.14'
|
||||
# 'aufs3-mmap.patch'
|
||||
)
|
||||
sha256sums=('61558aa490855f42b6340d1a1596be47454909629327c49a5e4e10268065dffa'
|
||||
'a26a25739c50d639174698ae498530205b55e5a2b11f8c33ab92a8581bc83fbd'
|
||||
'af640ea64e923d525a8238832e8452381e6dc76a3bf28046411cadd67c408114'
|
||||
'c01d212694eddcf694c55e0943bf3336b6e1ff41b90ac1cdc88b26789785ed45'
|
||||
'58907e9c82a97471aa97313a236b7c717e8c1c635e2be7b78bab34cad4617a22'
|
||||
'f0d90e756f14533ee67afda280500511a62465b4f76adcc5effa95a40045179c'
|
||||
|
@ -50,7 +49,6 @@ sha256sums=('61558aa490855f42b6340d1a1596be47454909629327c49a5e4e10268065dffa'
|
|||
'04f44bf5c181d6dc31905937c1bdccb0f5aecaad3a579e99b302502b9cbe0f7a'
|
||||
'79359454c9d8446eb55add2b1cdbf8332bd67dafb01fefb5b1ca090225f64d18'
|
||||
'f2a5e22c1ba6e9b8a32a7bd4a5327ee95538aa10edcee3cd12578f8ff49bf6be'
|
||||
'ff9df6746d7cbfe858d5b4bce932951c26414a7635cb5c26cd8d5c97df36a2a1'
|
||||
'384dd13fd4248fd6809da8c6ae29ced55d4a5cacc33ac2ae7522093ec0fb26d4'
|
||||
'SKIP')
|
||||
|
||||
|
@ -108,11 +106,6 @@ prepare() {
|
|||
# https://bugzilla.kernel.org/show_bug.cgi?id=74051
|
||||
patch -Np1 -i "${srcdir}/0013-net-Start-with-correct-mac_len-in-skb_network_protocol.patch"
|
||||
|
||||
# fix rtl8192se authentification
|
||||
# https://bugs.archlinux.org/task/39858
|
||||
# https://bugzilla.kernel.org/show_bug.cgi?id=74541
|
||||
patch -Np1 -i "${srcdir}/0014-fix-rtl8192se.patch"
|
||||
|
||||
# fix xsdt validation bug
|
||||
# https://bugs.archlinux.org/task/39811
|
||||
# https://bugzilla.kernel.org/show_bug.cgi?id=73911
|
||||
|
|
Loading…
Reference in a new issue