diff options
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -6,7 +6,7 @@ # # I maintain this because: # Arch version patch script does not apply consistently -# Arch version lacks ath9k and greysky2 patches +# Arch version lacks ath9k, greysky2, and raid6 patches # Arch version allows SM3 and SM4 # Arch version is 300 Hz # Arch version supports Intel ME @@ -31,6 +31,7 @@ source=(https://www.kernel.org/pub/linux/kernel/v4.x/linux-${pkgver}.tar.xz https://www.kernel.org/pub/linux/kernel/v4.x/linux-${pkgver}.tar.sign enable_additional_cpu_optimizations-$_gcc_more_v.tar.gz::https://github.com/graysky2/kernel_gcc_patch/archive/$_gcc_more_v.tar.gz ath9k-regdom-hack.patch + raid6-default-algo.patch config.x86_64 # the main kernel config files 60-linux.hook # pacman hook for depmod 90-linux.hook # pacman hook for initramfs regeneration @@ -40,7 +41,8 @@ sha256sums=('53de6be9adfb8899f0a15855f1aef62b8b5a3c5c575196ec8a640a5b8c1c3cf8' 'SKIP' '226e30068ea0fecdb22f337391385701996bfbdba37cdcf0f1dbf55f1080542d' 'e7ebf050c22bcec0028c0b3c79fd6d3913b0370ecc6a23dfe78ce475630cf503' - '0de5efb4e997d0aeb7c4a16997da39100e91a7e335ac00b2d7d951bc675fe538' + '0f81d6e4158b7beeb0eb514f1b9401f7e23699cb0f7b0d513e25dae1815daaeb' + '77bd79791cbfc91d4e62a77245e7e784e6978cbadb4450cb1a611a68944b84aa' 'ae2e95db94ef7176207c690224169594d49445e04249d2499e9d2fbc117a0b21' '75f99f5239e03238f88d1a834c50043ec32b1dc568f2cc291b07d04718483919' 'ad6344badc91ad0630caacde83f7f9b97276f80d26a20619a87952be65492c65') @@ -70,6 +72,10 @@ prepare() { msg2 "Applying ath9k patch" patch -p1 -i ../ath9k-regdom-hack.patch + # Set default raid6 algo patch + msg " Applying raid6 patch" + patch -p1 -i ../raid6-default-algo.patch + msg2 "Setting version..." scripts/setlocalversion --save-scmversion @@ -84,6 +90,7 @@ prepare() { #else cp ../config.x86_64 .config #fi + make olddefconfig make menuconfig |