4.19.6-2 (clr 4.19.6-666)

This commit is contained in:
Josip Ponjavic 2018-12-03 13:16:27 +01:00
parent fc35ca45ef
commit c1219d83a0
2 changed files with 11 additions and 12 deletions

View file

@ -1,6 +1,6 @@
pkgbase = linux-clear pkgbase = linux-clear
pkgver = 4.19.6 pkgver = 4.19.6
pkgrel = 1 pkgrel = 2
url = https://github.com/clearlinux-pkgs/linux url = https://github.com/clearlinux-pkgs/linux
arch = x86_64 arch = x86_64
license = GPL2 license = GPL2
@ -15,7 +15,7 @@ pkgbase = linux-clear
source = https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-4.19.tar.xz source = https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-4.19.tar.xz
source = https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-4.19.tar.sign source = https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-4.19.tar.sign
source = https://cdn.kernel.org/pub/linux/kernel/v4.x/patch-4.19.6.xz source = https://cdn.kernel.org/pub/linux/kernel/v4.x/patch-4.19.6.xz
source = clearlinux::git+https://github.com/clearlinux-pkgs/linux.git#tag=4.19.5-665 source = clearlinux::git+https://github.com/clearlinux-pkgs/linux.git#tag=4.19.6-666
source = https://downloadmirror.intel.com/28039/eng/microcode-20180807.tgz source = https://downloadmirror.intel.com/28039/eng/microcode-20180807.tgz
source = enable_additional_cpu_optimizations-20180509.tar.gz::https://github.com/graysky2/kernel_gcc_patch/archive/20180509.tar.gz source = enable_additional_cpu_optimizations-20180509.tar.gz::https://github.com/graysky2/kernel_gcc_patch/archive/20180509.tar.gz
source = 60-linux.hook source = 60-linux.hook

View file

@ -47,9 +47,7 @@ _subarch=27
# that you currently have probed in your system VASTLY reducing the number of # that you currently have probed in your system VASTLY reducing the number of
# modules built and the build time to do it. # modules built and the build time to do it.
# #
# WARNING - ALL modules must be probed or loaded via a config file BEFORE you # WARNING - ALL modules must be probed BEFORE you begin making the pkg!
# begin making the pkg unless you're running modprobed-db (AUR) and building
# this with makepkg as the user who is keeping the database.
# #
# To keep track of which modules are needed for your specific system/hardware, # To keep track of which modules are needed for your specific system/hardware,
# give module_db script a try: https://aur.archlinux.org/packages/modprobed-db # give module_db script a try: https://aur.archlinux.org/packages/modprobed-db
@ -68,10 +66,10 @@ _rev_override="n"
_major=4.19 _major=4.19
_minor=6 _minor=6
_srcname=linux-${_major} _srcname=linux-${_major}
_clr=${_major}.5-665 _clr=${_major}.6-666
pkgbase=linux-clear pkgbase=linux-clear
pkgver=${_major}.${_minor} pkgver=${_major}.${_minor}
pkgrel=1 pkgrel=2
arch=('x86_64') arch=('x86_64')
url="https://github.com/clearlinux-pkgs/linux" url="https://github.com/clearlinux-pkgs/linux"
license=('GPL2') license=('GPL2')
@ -164,11 +162,12 @@ CONFIG_MODULE_COMPRESS_XZ=y|' ./.config
### Optionally load needed modules for the make localmodconfig ### Optionally load needed modules for the make localmodconfig
# See https://aur.archlinux.org/packages/modprobed-db # See https://aur.archlinux.org/packages/modprobed-db
if [ -n "$_localmodcfg" ]; then if [ -n "$_localmodcfg" ]; then
if [ -f $HOME/.config/modprobed.db ]; then msg2 "If you have modprobed-db installed, running it in recall mode now"
msg2 "Found a modprobed-db database for Steven Rostedt's make localmodconfig" if [ -e /usr/bin/modprobed-db ]; then
make LSMOD=$HOME/.config/modprobed.db localmodconfig [[ -x /usr/bin/sudo ]] || {
else echo "Cannot call modprobe with sudo. Install sudo and configure it to work with this user."
msg2 "Running Steven Rostedt's make localmodconfig now" exit 1; }
sudo /usr/bin/modprobed-db recall
make localmodconfig make localmodconfig
fi fi
fi fi