diff options
-rw-r--r-- | PKGBUILD | 16 | ||||
-rw-r--r-- | bdver2-fix-for-graysky.patch | 11 |
2 files changed, 22 insertions, 5 deletions
@@ -1,12 +1,12 @@ # Maintainer: jc_gargma <jc_gargma@iserlohn-fortress.net> # Maintainer (Arch): Jan Alexander Steffens (heftig) <jan.steffens@gmail.com> # Maintainer (Arch): Tobias Powalowski <tpowa@archlinux.org> -# Maintainer (Arch): Thomas Baechler <thomas@archlinux.org> +# Contributor (Arch): Thomas Baechler <thomas@archlinux.org> # Contributor: Aqua-sama <aqua@iserlohn-fortress.net> # # I maintain this because: # Arch version patch script does not apply consistently -# Arch version lacks ath9k, greysky2, and raid6 patches +# Arch version lacks ath9k, bdver2, greysky2, and raid6 patches # Arch version allows SEED, SM3, SM4, and Streebog # Arch version is 300 Hz # Arch version supports Intel ME @@ -16,7 +16,7 @@ pkgbase=linux _majver=5.0 -_minver=7 +_minver=8 pkgver=${_majver}.${_minver} _gcc_more_v='20180509' _srcname=linux-${pkgver} @@ -28,6 +28,7 @@ makedepends=('xmlto' 'kmod' 'inetutils' 'bc' 'libelf') conflicts=('linux-libre') options=('!strip') source=("https://www.kernel.org/pub/linux/kernel/v5.x/linux-$pkgver.tar".{xz,sign} + bdver2-fix-for-graysky.patch 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 @@ -36,12 +37,13 @@ source=("https://www.kernel.org/pub/linux/kernel/v5.x/linux-$pkgver.tar".{xz,sig 90-linux.hook # pacman hook for initramfs regeneration linux.preset # standard config files for mkinitcpio ramdisk ) -sha256sums=('16e177662b9fc7255bfc51018513979f6effcbe52e459c543aa83a5b15ef54ec' +sha256sums=('11908044e8cce1e093141f8da594708d45d05d0381676ae9aa3d8aeaf7c85435' 'SKIP' + 'd35338c92d0dbf27ffedaf100bd852dd13fd9b5d49b12a10b91194a2ae654447' '226e30068ea0fecdb22f337391385701996bfbdba37cdcf0f1dbf55f1080542d' 'e7ebf050c22bcec0028c0b3c79fd6d3913b0370ecc6a23dfe78ce475630cf503' '0f81d6e4158b7beeb0eb514f1b9401f7e23699cb0f7b0d513e25dae1815daaeb' - '5ddff4db7aa59155e441c1b3fa5aad62d4e33f7adb82b7377c672c1568581d87' + 'cc300bf30de97b8c66ee98b8e0674b4b5f11b665adbd135efbd19f7845908908' 'ae2e95db94ef7176207c690224169594d49445e04249d2499e9d2fbc117a0b21' '75f99f5239e03238f88d1a834c50043ec32b1dc568f2cc291b07d04718483919' 'ad6344badc91ad0630caacde83f7f9b97276f80d26a20619a87952be65492c65') @@ -66,6 +68,10 @@ prepare() { msg2 "Applying graysky2 cpu patch" patch -p1 -i ../kernel_gcc_patch-${_gcc_more_v}/enable_additional_cpu_optimizations_for_gcc_v8.1+_kernel_v4.13+.patch + # Fix stack warnings and ldconfig segfaults on bdver2 with graysky2 gcc patch + msg2 "Applying bdver2 fix for graysky2 cpu patch" + patch -p1 -i ../bdver2-fix-for-graysky.patch + # Ignore ath9k eeprom patch msg2 "Applying ath9k patch" patch -p1 -i ../ath9k-regdom-hack.patch diff --git a/bdver2-fix-for-graysky.patch b/bdver2-fix-for-graysky.patch new file mode 100644 index 0000000..b7e5402 --- /dev/null +++ b/bdver2-fix-for-graysky.patch @@ -0,0 +1,11 @@ +--- a/arch/x86/Makefile ++++ b/arch/x86/Makefile +@@ -492,7 +492,7 @@ + cflags-$(CONFIG_MBOBCAT) += $(call cc-option,-march=btver1) + cflags-$(CONFIG_MJAGUAR) += $(call cc-option,-march=btver2) + cflags-$(CONFIG_MBULLDOZER) += $(call cc-option,-march=bdver1) +- cflags-$(CONFIG_MPILEDRIVER) += $(call cc-option,-march=bdver2) ++ cflags-$(CONFIG_MPILEDRIVER) += $(call cc-option,-march=bdver2) $(call cc-option,-mno-tbm) + cflags-$(CONFIG_MSTEAMROLLER) += $(call cc-option,-march=bdver3) + cflags-$(CONFIG_MEXCAVATOR) += $(call cc-option,-march=bdver4) + cflags-$(CONFIG_MZEN) += $(call cc-option,-march=znver1) |