From 39d9fc5b076e09af8f3a3f42940c9b038417e476 Mon Sep 17 00:00:00 2001 From: Josip Ponjavic Date: Tue, 5 Nov 2019 13:08:47 +0100 Subject: [PATCH] 5.3.8-4 (clr 5.3.7-853) enable CONFIG_NETFILTER_INGRESS --- .SRCINFO | 2 +- PKGBUILD | 40 ++++++++++++++++++++-------------------- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index dc35ff2..1b1d636 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = linux-clear pkgver = 5.3.8 - pkgrel = 3 + pkgrel = 4 url = https://github.com/clearlinux-pkgs/linux arch = x86_64 license = GPL2 diff --git a/PKGBUILD b/PKGBUILD index 384bca0..15af7bc 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -68,7 +68,7 @@ _srcname=linux-${_major} _clr=${_major}.7-853 pkgbase=linux-clear pkgver=${_major}.${_minor} -pkgrel=3 +pkgrel=4 arch=('x86_64') url="https://github.com/clearlinux-pkgs/linux" license=('GPL2') @@ -114,34 +114,34 @@ prepare() { ### Enable extra stuff from arch kernel msg2 "Enable extra stuff from arch kernel..." + # General setup + scripts/config --module IKCONFIG \ + --enable-after IKCONFIG IKCONFIG_PROC \ + --undefine RT_GROUP_SCHED + + # Power management and ACPI options + scripts/config --enable ACPI_REV_OVERRIDE_POSSIBLE \ + --enable HIBERNATION + + # Enable loadable module support scripts/config --undefine MODULE_SIG_FORCE \ --enable MODULE_COMPRESS \ - --enable-after MODULE_COMPRESS MODULE_COMPRESS_XZ \ + --enable-after MODULE_COMPRESS MODULE_COMPRESS_XZ + + # Networking support + scripts/config --enable NETFILTER_INGRESS \ + --module NET_SCH_CAKE + + # Device Drivers + scripts/config --enable FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER \ --enable DELL_SMBIOS_SMM \ - --module IKCONFIG \ - --enable-after IKCONFIG IKCONFIG_PROC \ + --module PATA_JMICRON \ --enable-after SOUND SOUND_OSS_CORE \ --enable SND_OSSEMUL \ --module-after SND_OSSEMUL SND_MIXER_OSS \ --module-after SND_MIXER_OSS SND_PCM_OSS \ --enable-after SND_PCM_OSS SND_PCM_OSS_PLUGINS - # Scheduler features - scripts/config --undefine RT_GROUP_SCHED - - # Queueing/Scheduling - scripts/config --module NET_SCH_CAKE - - # PATA SFF controllers with BMDMA - scripts/config --module PATA_JMICRON - - # Power management and ACPI options - scripts/config --enable ACPI_REV_OVERRIDE_POSSIBLE \ - --enable HIBERNATION - - # Console display driver support - scripts/config --enable FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER - # Security options scripts/config --enable SECURITY_SELINUX \ --enable-after SECURITY_SELINUX SECURITY_SELINUX_BOOTPARAM \