From 3cf5b21450bc0bf47337d0ab027dbd3061762a32 Mon Sep 17 00:00:00 2001 From: Josip Ponjavic Date: Fri, 10 Dec 2021 12:59:38 +0100 Subject: [PATCH] 5.15.7-4 (clr 5.15.7-1106) --- .SRCINFO | 4 ++-- PKGBUILD | 14 +++++++------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 5618e21..191966a 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = linux-clear pkgdesc = Clear Linux pkgver = 5.15.7 - pkgrel = 3 + pkgrel = 4 url = https://github.com/clearlinux-pkgs/linux arch = x86_64 license = GPL2 @@ -16,7 +16,7 @@ pkgbase = linux-clear source = https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.15.tar.xz source = https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.15.tar.sign source = https://cdn.kernel.org/pub/linux/kernel/v5.x/patch-5.15.7.xz - source = linux-clear::git+https://github.com/clearlinux-pkgs/linux.git#tag=5.15.6-1105 + source = linux-clear::git+https://github.com/clearlinux-pkgs/linux.git#tag=5.15.7-1106 source = more-uarches-20210914.tar.gz::https://github.com/graysky2/kernel_compiler_patch/archive/20210914.tar.gz source = 0001-pci-Enable-overrides-for-missing-ACS-capabilities.patch::https://raw.githubusercontent.com/xanmod/linux-patches/8ba6612318090567422d49ccc79bc7bbe5484cfc/linux-5.15.y-xanmod/pci_acso/0001-pci-Enable-overrides-for-missing-ACS-capabilities.patch source = 0001-sysctl-add-sysctl-to-disallow-unprivileged-CLONE_NEW.patch::https://raw.githubusercontent.com/xanmod/linux-patches/8ba6612318090567422d49ccc79bc7bbe5484cfc/linux-5.15.y-xanmod/userns/0001-sysctl-add-sysctl-to-disallow-unprivileged-CLONE_NEW.patch diff --git a/PKGBUILD b/PKGBUILD index 13880d4..bb5b71d 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -5,7 +5,7 @@ # Set the next two variables to ANYTHING that is not null to enable them # Tweak kernel options prior to a build via nconfig -_makenconfig= +: "${_makenconfig:=""}" # Only compile active modules to VASTLY reduce the number of modules built and # the build time. @@ -15,7 +15,7 @@ _makenconfig= # This PKGBUILD reads the database kept if it exists # # More at this wiki page ---> https://wiki.archlinux.org/index.php/Modprobed-db -_localmodcfg= +: "${_localmodcfg:=""}" # Optionally select a sub architecture by number or leave blank which will # require user interaction during the build. Note that the generic (default) @@ -62,27 +62,27 @@ _localmodcfg= # 39. Generic-x86-64-v4 (GENERIC_CPU4) # 40. Intel-Native optimizations autodetected by GCC (MNATIVE_INTEL) # 41. AMD-Native optimizations autodetected by GCC (MNATIVE_AMD) -_subarch= +: "${_subarch:=""}" # Use the current kernel's .config file # Enabling this option will use the .config of the RUNNING kernel rather than # the ARCH defaults. Useful when the package gets updated and you already went # through the trouble of customizing your config options. NOT recommended when # a new kernel is released, but again, convenient for package bumps. -_use_current= +: "${_use_current:=""}" # Enable compiling with LLVM -_use_llvm_lto= +: "${_use_llvm_lto:=""}" ### IMPORTANT: Do no edit below this line unless you know what you're doing _major=5.15 _minor=7 _srcname=linux-${_major} -_clr=${_major}.6-1105 +_clr=${_major}.7-1106 pkgbase=linux-clear pkgver=${_major}.${_minor} -pkgrel=3 +pkgrel=4 pkgdesc='Clear Linux' arch=('x86_64') url="https://github.com/clearlinux-pkgs/linux"