Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
bf0173dd67 | ||
|
7866be59de | ||
|
1bde6b608c | ||
|
c0f8f6d68e | ||
|
1afda7c108 |
2
PKGBUILD
2
PKGBUILD
@@ -159,7 +159,7 @@ hackbase() {
|
|||||||
echo "$pkgbase" | install -Dm644 /dev/stdin "$modulesdir/pkgbase"
|
echo "$pkgbase" | install -Dm644 /dev/stdin "$modulesdir/pkgbase"
|
||||||
|
|
||||||
msg2 "Installing modules..."
|
msg2 "Installing modules..."
|
||||||
make INSTALL_MOD_PATH="$pkgdir/usr" INSTALL_MOD_STRIP=1 \
|
ZSTD_CLEVEL=19 make INSTALL_MOD_PATH="$pkgdir/usr" INSTALL_MOD_STRIP=1 \
|
||||||
DEPMOD=/doesnt/exist modules_install # Suppress depmod
|
DEPMOD=/doesnt/exist modules_install # Suppress depmod
|
||||||
|
|
||||||
# remove build and source links
|
# remove build and source links
|
||||||
|
@@ -3,7 +3,7 @@
|
|||||||
# Linux distribution you are using, options are "Arch", "Ubuntu", "Debian", "Fedora", "Suse", "Gentoo", "Generic".
|
# Linux distribution you are using, options are "Arch", "Ubuntu", "Debian", "Fedora", "Suse", "Gentoo", "Generic".
|
||||||
# It is automatically set to "Arch" when using PKGBUILD.
|
# It is automatically set to "Arch" when using PKGBUILD.
|
||||||
# If left empty, the script will prompt
|
# If left empty, the script will prompt
|
||||||
_distro=""
|
_distro="Arch"
|
||||||
|
|
||||||
# Kernel Version - Options are "5.4", and from "5.7" to "5.19"
|
# Kernel Version - Options are "5.4", and from "5.7" to "5.19"
|
||||||
# you can also set a specific kernel version, e.g. "6.0-rc4" or "5.10.51",
|
# you can also set a specific kernel version, e.g. "6.0-rc4" or "5.10.51",
|
||||||
@@ -46,7 +46,7 @@ CUSTOM_GCC_PATH=""
|
|||||||
CUSTOM_LLVM_PATH=""
|
CUSTOM_LLVM_PATH=""
|
||||||
|
|
||||||
# Set to true to bypass makepkg.conf and use all available threads for compilation. False will respect your makepkg.conf options.
|
# Set to true to bypass makepkg.conf and use all available threads for compilation. False will respect your makepkg.conf options.
|
||||||
_force_all_threads="true"
|
_force_all_threads="false"
|
||||||
|
|
||||||
# Set to true to prevent ccache from being used and set CONFIG_GCC_PLUGINS=y (which needs to be disabled for ccache to work properly)
|
# Set to true to prevent ccache from being used and set CONFIG_GCC_PLUGINS=y (which needs to be disabled for ccache to work properly)
|
||||||
_noccache="false"
|
_noccache="false"
|
||||||
@@ -60,10 +60,10 @@ _modprobeddb="false"
|
|||||||
_modprobeddb_db_path=~/.config/modprobed.db
|
_modprobeddb_db_path=~/.config/modprobed.db
|
||||||
|
|
||||||
# Set to "1" to call make menuconfig, "2" to call make nconfig, "3" to call make xconfig, before building the kernel. Set to false to disable and skip the prompt.
|
# Set to "1" to call make menuconfig, "2" to call make nconfig, "3" to call make xconfig, before building the kernel. Set to false to disable and skip the prompt.
|
||||||
_menunconfig=""
|
_menunconfig="false"
|
||||||
|
|
||||||
# Set to true to generate a kernel config fragment from your changes in menuconfig/nconfig. Set to false to disable and skip the prompt.
|
# Set to true to generate a kernel config fragment from your changes in menuconfig/nconfig. Set to false to disable and skip the prompt.
|
||||||
_diffconfig=""
|
_diffconfig="false"
|
||||||
|
|
||||||
# Set to the file name where the generated config fragment should be written to. Only used if _diffconfig is active.
|
# Set to the file name where the generated config fragment should be written to. Only used if _diffconfig is active.
|
||||||
_diffconfig_name=""
|
_diffconfig_name=""
|
||||||
@@ -97,11 +97,11 @@ _STRIP="true"
|
|||||||
# LEAVE AN EMPTY VALUE TO BE PROMPTED ABOUT FOLLOWING OPTIONS AT BUILD TIME
|
# LEAVE AN EMPTY VALUE TO BE PROMPTED ABOUT FOLLOWING OPTIONS AT BUILD TIME
|
||||||
|
|
||||||
# CPU scheduler - Options are "upds" (TkG's Undead PDS), "pds", "bmq", "muqss", "cacule", "tt", "bore" or "cfs" (kernel's default)
|
# CPU scheduler - Options are "upds" (TkG's Undead PDS), "pds", "bmq", "muqss", "cacule", "tt", "bore" or "cfs" (kernel's default)
|
||||||
_cpusched=""
|
_cpusched="pds"
|
||||||
|
|
||||||
# Compiler to use - Options are "gcc" or "llvm".
|
# Compiler to use - Options are "gcc" or "llvm".
|
||||||
# For advanced users.
|
# For advanced users.
|
||||||
_compiler=""
|
_compiler="gcc"
|
||||||
|
|
||||||
# Force the use of the LLVM Integrated Assembler whether using LLVM, LTO or not.
|
# Force the use of the LLVM Integrated Assembler whether using LLVM, LTO or not.
|
||||||
# Set to "1" to enable.
|
# Set to "1" to enable.
|
||||||
@@ -131,7 +131,7 @@ _preempt_rt_force=""
|
|||||||
# For BMQ: 0: No yield.
|
# For BMQ: 0: No yield.
|
||||||
# 1: Deboost and requeue task. (Default)
|
# 1: Deboost and requeue task. (Default)
|
||||||
# 2: Set rq skip task.
|
# 2: Set rq skip task.
|
||||||
_sched_yield_type=""
|
_sched_yield_type="0"
|
||||||
|
|
||||||
# Round Robin interval is the longest duration two tasks with the same nice level will be delayed for. When CPU time is requested by a task, it receives a time slice equal
|
# Round Robin interval is the longest duration two tasks with the same nice level will be delayed for. When CPU time is requested by a task, it receives a time slice equal
|
||||||
# to the rr_interval in addition to a virtual deadline. When using yield_type 2, a low value can help offset the disadvantages of rescheduling a process that has yielded.
|
# to the rr_interval in addition to a virtual deadline. When using yield_type 2, a low value can help offset the disadvantages of rescheduling a process that has yielded.
|
||||||
@@ -139,7 +139,7 @@ _sched_yield_type=""
|
|||||||
# PDS default: 4ms"
|
# PDS default: 4ms"
|
||||||
# BMQ default: 2ms"
|
# BMQ default: 2ms"
|
||||||
# Set to "1" for 2ms, "2" for 4ms, "3" for 6ms, "4" for 8ms, or "default" to keep the chosen scheduler defaults.
|
# Set to "1" for 2ms, "2" for 4ms, "3" for 6ms, "4" for 8ms, or "default" to keep the chosen scheduler defaults.
|
||||||
_rr_interval=""
|
_rr_interval="default"
|
||||||
|
|
||||||
# Set to "true" to disable FUNCTION_TRACER/GRAPH_TRACER, lowering overhead but limiting debugging and analyzing of kernel functions - Kernel default is "false"
|
# Set to "true" to disable FUNCTION_TRACER/GRAPH_TRACER, lowering overhead but limiting debugging and analyzing of kernel functions - Kernel default is "false"
|
||||||
_ftracedisable="false"
|
_ftracedisable="false"
|
||||||
@@ -154,10 +154,10 @@ _misc_adds="true"
|
|||||||
# Full tickless can give higher performances in case you use isolation of CPUs for tasks
|
# Full tickless can give higher performances in case you use isolation of CPUs for tasks
|
||||||
# and it works only when using the nohz_full kernel parameter, otherwise behaves like idle.
|
# and it works only when using the nohz_full kernel parameter, otherwise behaves like idle.
|
||||||
# Just tickless idle perform better for most platforms.
|
# Just tickless idle perform better for most platforms.
|
||||||
_tickless=""
|
_tickless="2"
|
||||||
|
|
||||||
# Set to "true" to use ACS override patch - https://wiki.archlinux.org/index.php/PCI_passthrough_via_OVMF#Bypassing_the_IOMMU_groups_.28ACS_override_patch.29 - Kernel default is "false"
|
# Set to "true" to use ACS override patch - https://wiki.archlinux.org/index.php/PCI_passthrough_via_OVMF#Bypassing_the_IOMMU_groups_.28ACS_override_patch.29 - Kernel default is "false"
|
||||||
_acs_override=""
|
_acs_override="false"
|
||||||
|
|
||||||
# Set to "true" to add Bcache filesystem support. You'll have to install bcachefs-tools-git from AUR for utilities - https://bcachefs.org/ - If in doubt, set to "false"
|
# Set to "true" to add Bcache filesystem support. You'll have to install bcachefs-tools-git from AUR for utilities - https://bcachefs.org/ - If in doubt, set to "false"
|
||||||
# This can be buggy and isn't recommended on a production machine, also enabling this option will not allow you to enable MGLRU.
|
# This can be buggy and isn't recommended on a production machine, also enabling this option will not allow you to enable MGLRU.
|
||||||
@@ -168,13 +168,13 @@ _bcachefs="false"
|
|||||||
_winesync="false"
|
_winesync="false"
|
||||||
|
|
||||||
# Set to "true" to enable Binder and Ashmem, the kernel modules required to use the android emulator Anbox. ! This doesn't apply to 5.4.y !
|
# Set to "true" to enable Binder and Ashmem, the kernel modules required to use the android emulator Anbox. ! This doesn't apply to 5.4.y !
|
||||||
_anbox=""
|
_anbox="false"
|
||||||
|
|
||||||
# A selection of patches from Zen/Liquorix kernel and additional tweaks for a better gaming experience (ZENIFY) - Default is "true"
|
# A selection of patches from Zen/Liquorix kernel and additional tweaks for a better gaming experience (ZENIFY) - Default is "true"
|
||||||
_zenify="true"
|
_zenify="true"
|
||||||
|
|
||||||
# compiler optimization level - 1. Optimize for performance (-O2); 2. Optimize harder (-O3); 3. Optimize for size (-Os) - Kernel default is "1"
|
# compiler optimization level - 1. Optimize for performance (-O2); 2. Optimize harder (-O3); 3. Optimize for size (-Os) - Kernel default is "1"
|
||||||
_compileroptlevel="1"
|
_compileroptlevel="2"
|
||||||
|
|
||||||
# CPU compiler optimizations - Defaults to prompt at kernel config if left empty
|
# CPU compiler optimizations - Defaults to prompt at kernel config if left empty
|
||||||
# AMD CPUs : "k8" "k8sse3" "k10" "barcelona" "bobcat" "jaguar" "bulldozer" "piledriver" "steamroller" "excavator" "zen" "zen2" "zen3" "zen4" (zen3 opt support depends on GCC11) (zen4 opt support depends on GCC13)
|
# AMD CPUs : "k8" "k8sse3" "k10" "barcelona" "bobcat" "jaguar" "bulldozer" "piledriver" "steamroller" "excavator" "zen" "zen2" "zen3" "zen4" (zen3 opt support depends on GCC11) (zen4 opt support depends on GCC13)
|
||||||
@@ -188,7 +188,7 @@ _compileroptlevel="1"
|
|||||||
# - "generic_v2" (depends on GCC11 - to share the package between machines with different CPU µarch supporting at least x86-64-v2
|
# - "generic_v2" (depends on GCC11 - to share the package between machines with different CPU µarch supporting at least x86-64-v2
|
||||||
# - "generic_v3" (depends on GCC11 - to share the package between machines with different CPU µarch supporting at least x86-64-v3
|
# - "generic_v3" (depends on GCC11 - to share the package between machines with different CPU µarch supporting at least x86-64-v3
|
||||||
# - "generic_v4" (depends on GCC11 - to share the package between machines with different CPU µarch supporting at least x86-64-v4
|
# - "generic_v4" (depends on GCC11 - to share the package between machines with different CPU µarch supporting at least x86-64-v4
|
||||||
_processor_opt=""
|
_processor_opt="skylake"
|
||||||
|
|
||||||
# CacULE only - Enable Response Driven Balancer, an experimental load balancer for CacULE
|
# CacULE only - Enable Response Driven Balancer, an experimental load balancer for CacULE
|
||||||
_cacule_rdb="false"
|
_cacule_rdb="false"
|
||||||
@@ -201,13 +201,13 @@ _cacule_rdb_interval="19"
|
|||||||
_tt_high_hz="false"
|
_tt_high_hz="false"
|
||||||
|
|
||||||
# MuQSS and PDS only - SMT (Hyperthreading) aware nice priority and policy support (SMT_NICE) - Kernel default is "true" - You can disable this on non-SMT/HT CPUs for lower overhead
|
# MuQSS and PDS only - SMT (Hyperthreading) aware nice priority and policy support (SMT_NICE) - Kernel default is "true" - You can disable this on non-SMT/HT CPUs for lower overhead
|
||||||
_smt_nice=""
|
_smt_nice="true"
|
||||||
|
|
||||||
# Trust the CPU manufacturer to initialize Linux's CRNG (RANDOM_TRUST_CPU) - Kernel default is "false"
|
# Trust the CPU manufacturer to initialize Linux's CRNG (RANDOM_TRUST_CPU) - Kernel default is "false"
|
||||||
_random_trust_cpu="true"
|
_random_trust_cpu="true"
|
||||||
|
|
||||||
# Timer frequency - "100" "250" "300" "500" "750" "1000" ("2000" is available for cacule cpusched only) - More options available in kernel config prompt when left empty depending on selected cpusched with the default option pointed with a ">" (2000 for cacule, 100 for muqss and 1000 for other cpu schedulers)
|
# Timer frequency - "100" "250" "300" "500" "750" "1000" ("2000" is available for cacule cpusched only) - More options available in kernel config prompt when left empty depending on selected cpusched with the default option pointed with a ">" (2000 for cacule, 100 for muqss and 1000 for other cpu schedulers)
|
||||||
_timer_freq=""
|
_timer_freq="1000"
|
||||||
|
|
||||||
# Default CPU governor - "performance", "ondemand", "schedutil" or leave empty for default (schedutil)
|
# Default CPU governor - "performance", "ondemand", "schedutil" or leave empty for default (schedutil)
|
||||||
_default_cpu_gov="ondemand"
|
_default_cpu_gov="ondemand"
|
||||||
@@ -223,7 +223,7 @@ _aggressive_ondemand="true"
|
|||||||
_tcp_cong_alg=""
|
_tcp_cong_alg=""
|
||||||
|
|
||||||
# You can pass a default set of kernel command line options here - example: "intel_pstate=passive nowatchdog amdgpu.ppfeaturemask=0xfffd7fff mitigations=off"
|
# You can pass a default set of kernel command line options here - example: "intel_pstate=passive nowatchdog amdgpu.ppfeaturemask=0xfffd7fff mitigations=off"
|
||||||
_custom_commandline="intel_pstate=passive split_lock_detect=off"
|
_custom_commandline=""
|
||||||
|
|
||||||
# Selection of Clearlinux patches
|
# Selection of Clearlinux patches
|
||||||
_clear_patches="true"
|
_clear_patches="true"
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
#
|
#
|
||||||
# Automatically generated file; DO NOT EDIT.
|
# Automatically generated file; DO NOT EDIT.
|
||||||
# Linux/x86 6.4.0-rc2 Kernel Configuration
|
# Linux/x86 6.4.0-arch1 Kernel Configuration
|
||||||
#
|
#
|
||||||
CONFIG_CC_VERSION_TEXT="gcc (GCC) 13.1.1 20230429"
|
CONFIG_CC_VERSION_TEXT="gcc (GCC) 13.1.1 20230429"
|
||||||
CONFIG_CC_IS_GCC=y
|
CONFIG_CC_IS_GCC=y
|
||||||
@@ -512,7 +512,7 @@ CONFIG_PHYSICAL_ALIGN=0x200000
|
|||||||
CONFIG_DYNAMIC_MEMORY_LAYOUT=y
|
CONFIG_DYNAMIC_MEMORY_LAYOUT=y
|
||||||
CONFIG_RANDOMIZE_MEMORY=y
|
CONFIG_RANDOMIZE_MEMORY=y
|
||||||
CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING=0xa
|
CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING=0xa
|
||||||
# CONFIG_ADDRESS_MASKING is not set
|
CONFIG_ADDRESS_MASKING=y
|
||||||
CONFIG_HOTPLUG_CPU=y
|
CONFIG_HOTPLUG_CPU=y
|
||||||
# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set
|
# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set
|
||||||
# CONFIG_DEBUG_HOTPLUG_CPU0 is not set
|
# CONFIG_DEBUG_HOTPLUG_CPU0 is not set
|
||||||
@@ -2009,7 +2009,7 @@ CONFIG_BT_MTKSDIO=m
|
|||||||
CONFIG_BT_MTKUART=m
|
CONFIG_BT_MTKUART=m
|
||||||
CONFIG_BT_HCIRSI=m
|
CONFIG_BT_HCIRSI=m
|
||||||
CONFIG_BT_VIRTIO=m
|
CONFIG_BT_VIRTIO=m
|
||||||
# CONFIG_BT_NXPUART is not set
|
CONFIG_BT_NXPUART=m
|
||||||
# end of Bluetooth device drivers
|
# end of Bluetooth device drivers
|
||||||
|
|
||||||
CONFIG_AF_RXRPC=m
|
CONFIG_AF_RXRPC=m
|
||||||
@@ -2925,7 +2925,7 @@ CONFIG_PATA_PARPORT=m
|
|||||||
#
|
#
|
||||||
CONFIG_PATA_PARPORT_ATEN=m
|
CONFIG_PATA_PARPORT_ATEN=m
|
||||||
CONFIG_PATA_PARPORT_BPCK=m
|
CONFIG_PATA_PARPORT_BPCK=m
|
||||||
# CONFIG_PATA_PARPORT_BPCK6 is not set
|
CONFIG_PATA_PARPORT_BPCK6=m
|
||||||
CONFIG_PATA_PARPORT_COMM=m
|
CONFIG_PATA_PARPORT_COMM=m
|
||||||
CONFIG_PATA_PARPORT_DSTR=m
|
CONFIG_PATA_PARPORT_DSTR=m
|
||||||
CONFIG_PATA_PARPORT_FIT2=m
|
CONFIG_PATA_PARPORT_FIT2=m
|
||||||
@@ -3010,7 +3010,7 @@ CONFIG_TCM_FC=m
|
|||||||
CONFIG_ISCSI_TARGET=m
|
CONFIG_ISCSI_TARGET=m
|
||||||
CONFIG_ISCSI_TARGET_CXGB4=m
|
CONFIG_ISCSI_TARGET_CXGB4=m
|
||||||
CONFIG_SBP_TARGET=m
|
CONFIG_SBP_TARGET=m
|
||||||
# CONFIG_REMOTE_TARGET is not set
|
CONFIG_REMOTE_TARGET=m
|
||||||
CONFIG_FUSION=y
|
CONFIG_FUSION=y
|
||||||
CONFIG_FUSION_SPI=m
|
CONFIG_FUSION_SPI=m
|
||||||
CONFIG_FUSION_FC=m
|
CONFIG_FUSION_FC=m
|
||||||
@@ -3128,7 +3128,7 @@ CONFIG_NET_DSA_MSCC_OCELOT_EXT=m
|
|||||||
CONFIG_NET_DSA_MSCC_SEVILLE=m
|
CONFIG_NET_DSA_MSCC_SEVILLE=m
|
||||||
CONFIG_NET_DSA_AR9331=m
|
CONFIG_NET_DSA_AR9331=m
|
||||||
CONFIG_NET_DSA_QCA8K=m
|
CONFIG_NET_DSA_QCA8K=m
|
||||||
# CONFIG_NET_DSA_QCA8K_LEDS_SUPPORT is not set
|
CONFIG_NET_DSA_QCA8K_LEDS_SUPPORT=y
|
||||||
CONFIG_NET_DSA_SJA1105=m
|
CONFIG_NET_DSA_SJA1105=m
|
||||||
CONFIG_NET_DSA_SJA1105_PTP=y
|
CONFIG_NET_DSA_SJA1105_PTP=y
|
||||||
CONFIG_NET_DSA_SJA1105_TAS=y
|
CONFIG_NET_DSA_SJA1105_TAS=y
|
||||||
@@ -3175,7 +3175,7 @@ CONFIG_PCMCIA_NMCLAN=m
|
|||||||
CONFIG_AMD_XGBE=m
|
CONFIG_AMD_XGBE=m
|
||||||
CONFIG_AMD_XGBE_DCB=y
|
CONFIG_AMD_XGBE_DCB=y
|
||||||
CONFIG_AMD_XGBE_HAVE_ECC=y
|
CONFIG_AMD_XGBE_HAVE_ECC=y
|
||||||
# CONFIG_PDS_CORE is not set
|
CONFIG_PDS_CORE=m
|
||||||
CONFIG_NET_VENDOR_AQUANTIA=y
|
CONFIG_NET_VENDOR_AQUANTIA=y
|
||||||
CONFIG_AQTION=m
|
CONFIG_AQTION=m
|
||||||
CONFIG_NET_VENDOR_ARC=y
|
CONFIG_NET_VENDOR_ARC=y
|
||||||
@@ -3538,13 +3538,13 @@ CONFIG_MARVELL_88X2222_PHY=m
|
|||||||
CONFIG_MAXLINEAR_GPHY=m
|
CONFIG_MAXLINEAR_GPHY=m
|
||||||
CONFIG_MEDIATEK_GE_PHY=m
|
CONFIG_MEDIATEK_GE_PHY=m
|
||||||
CONFIG_MICREL_PHY=m
|
CONFIG_MICREL_PHY=m
|
||||||
# CONFIG_MICROCHIP_T1S_PHY is not set
|
CONFIG_MICROCHIP_T1S_PHY=m
|
||||||
CONFIG_MICROCHIP_PHY=m
|
CONFIG_MICROCHIP_PHY=m
|
||||||
CONFIG_MICROCHIP_T1_PHY=m
|
CONFIG_MICROCHIP_T1_PHY=m
|
||||||
CONFIG_MICROSEMI_PHY=m
|
CONFIG_MICROSEMI_PHY=m
|
||||||
CONFIG_MOTORCOMM_PHY=m
|
CONFIG_MOTORCOMM_PHY=m
|
||||||
CONFIG_NATIONAL_PHY=m
|
CONFIG_NATIONAL_PHY=m
|
||||||
# CONFIG_NXP_CBTX_PHY is not set
|
CONFIG_NXP_CBTX_PHY=m
|
||||||
CONFIG_NXP_C45_TJA11XX_PHY=m
|
CONFIG_NXP_C45_TJA11XX_PHY=m
|
||||||
CONFIG_NXP_TJA11XX_PHY=m
|
CONFIG_NXP_TJA11XX_PHY=m
|
||||||
CONFIG_NCN26000_PHY=m
|
CONFIG_NCN26000_PHY=m
|
||||||
@@ -4008,21 +4008,22 @@ CONFIG_RTL8XXXU_UNTESTED=y
|
|||||||
CONFIG_RTW88=m
|
CONFIG_RTW88=m
|
||||||
CONFIG_RTW88_CORE=m
|
CONFIG_RTW88_CORE=m
|
||||||
CONFIG_RTW88_PCI=m
|
CONFIG_RTW88_PCI=m
|
||||||
|
CONFIG_RTW88_SDIO=m
|
||||||
CONFIG_RTW88_USB=m
|
CONFIG_RTW88_USB=m
|
||||||
CONFIG_RTW88_8822B=m
|
CONFIG_RTW88_8822B=m
|
||||||
CONFIG_RTW88_8822C=m
|
CONFIG_RTW88_8822C=m
|
||||||
CONFIG_RTW88_8723D=m
|
CONFIG_RTW88_8723D=m
|
||||||
CONFIG_RTW88_8821C=m
|
CONFIG_RTW88_8821C=m
|
||||||
CONFIG_RTW88_8822BE=m
|
CONFIG_RTW88_8822BE=m
|
||||||
# CONFIG_RTW88_8822BS is not set
|
CONFIG_RTW88_8822BS=m
|
||||||
CONFIG_RTW88_8822BU=m
|
CONFIG_RTW88_8822BU=m
|
||||||
CONFIG_RTW88_8822CE=m
|
CONFIG_RTW88_8822CE=m
|
||||||
# CONFIG_RTW88_8822CS is not set
|
CONFIG_RTW88_8822CS=m
|
||||||
CONFIG_RTW88_8822CU=m
|
CONFIG_RTW88_8822CU=m
|
||||||
CONFIG_RTW88_8723DE=m
|
CONFIG_RTW88_8723DE=m
|
||||||
CONFIG_RTW88_8723DU=m
|
CONFIG_RTW88_8723DU=m
|
||||||
CONFIG_RTW88_8821CE=m
|
CONFIG_RTW88_8821CE=m
|
||||||
# CONFIG_RTW88_8821CS is not set
|
CONFIG_RTW88_8821CS=m
|
||||||
CONFIG_RTW88_8821CU=m
|
CONFIG_RTW88_8821CU=m
|
||||||
CONFIG_RTW88_DEBUG=y
|
CONFIG_RTW88_DEBUG=y
|
||||||
CONFIG_RTW88_DEBUGFS=y
|
CONFIG_RTW88_DEBUGFS=y
|
||||||
@@ -4309,7 +4310,7 @@ CONFIG_TOUCHSCREEN_MMS114=m
|
|||||||
CONFIG_TOUCHSCREEN_MELFAS_MIP4=m
|
CONFIG_TOUCHSCREEN_MELFAS_MIP4=m
|
||||||
CONFIG_TOUCHSCREEN_MSG2638=m
|
CONFIG_TOUCHSCREEN_MSG2638=m
|
||||||
CONFIG_TOUCHSCREEN_MTOUCH=m
|
CONFIG_TOUCHSCREEN_MTOUCH=m
|
||||||
# CONFIG_TOUCHSCREEN_NOVATEK_NVT_TS is not set
|
CONFIG_TOUCHSCREEN_NOVATEK_NVT_TS=m
|
||||||
CONFIG_TOUCHSCREEN_IMAGIS=m
|
CONFIG_TOUCHSCREEN_IMAGIS=m
|
||||||
CONFIG_TOUCHSCREEN_INEXIO=m
|
CONFIG_TOUCHSCREEN_INEXIO=m
|
||||||
CONFIG_TOUCHSCREEN_MK712=m
|
CONFIG_TOUCHSCREEN_MK712=m
|
||||||
@@ -4820,7 +4821,7 @@ CONFIG_PTP_1588_CLOCK_IDT82P33=m
|
|||||||
CONFIG_PTP_1588_CLOCK_IDTCM=m
|
CONFIG_PTP_1588_CLOCK_IDTCM=m
|
||||||
CONFIG_PTP_1588_CLOCK_VMW=m
|
CONFIG_PTP_1588_CLOCK_VMW=m
|
||||||
CONFIG_PTP_1588_CLOCK_OCP=m
|
CONFIG_PTP_1588_CLOCK_OCP=m
|
||||||
# CONFIG_PTP_DFL_TOD is not set
|
CONFIG_PTP_DFL_TOD=m
|
||||||
# end of PTP clock support
|
# end of PTP clock support
|
||||||
|
|
||||||
CONFIG_PINCTRL=y
|
CONFIG_PINCTRL=y
|
||||||
@@ -4879,6 +4880,7 @@ CONFIG_GPIOLIB_IRQCHIP=y
|
|||||||
CONFIG_GPIO_CDEV=y
|
CONFIG_GPIO_CDEV=y
|
||||||
CONFIG_GPIO_CDEV_V1=y
|
CONFIG_GPIO_CDEV_V1=y
|
||||||
CONFIG_GPIO_GENERIC=m
|
CONFIG_GPIO_GENERIC=m
|
||||||
|
CONFIG_GPIO_REGMAP=m
|
||||||
CONFIG_GPIO_MAX730X=m
|
CONFIG_GPIO_MAX730X=m
|
||||||
CONFIG_GPIO_IDIO_16=m
|
CONFIG_GPIO_IDIO_16=m
|
||||||
|
|
||||||
@@ -4893,6 +4895,7 @@ CONFIG_GPIO_ICH=m
|
|||||||
CONFIG_GPIO_MB86S7X=m
|
CONFIG_GPIO_MB86S7X=m
|
||||||
CONFIG_GPIO_MENZ127=m
|
CONFIG_GPIO_MENZ127=m
|
||||||
CONFIG_GPIO_SIOX=m
|
CONFIG_GPIO_SIOX=m
|
||||||
|
CONFIG_GPIO_TANGIER=m
|
||||||
CONFIG_GPIO_VX855=m
|
CONFIG_GPIO_VX855=m
|
||||||
CONFIG_GPIO_AMD_FCH=m
|
CONFIG_GPIO_AMD_FCH=m
|
||||||
# end of Memory mapped GPIO drivers
|
# end of Memory mapped GPIO drivers
|
||||||
@@ -4911,7 +4914,7 @@ CONFIG_GPIO_WS16C48=m
|
|||||||
#
|
#
|
||||||
# I2C GPIO expanders
|
# I2C GPIO expanders
|
||||||
#
|
#
|
||||||
# CONFIG_GPIO_FXL6408 is not set
|
CONFIG_GPIO_FXL6408=m
|
||||||
CONFIG_GPIO_MAX7300=m
|
CONFIG_GPIO_MAX7300=m
|
||||||
CONFIG_GPIO_MAX732X=m
|
CONFIG_GPIO_MAX732X=m
|
||||||
CONFIG_GPIO_PCA953X=m
|
CONFIG_GPIO_PCA953X=m
|
||||||
@@ -4931,7 +4934,7 @@ CONFIG_GPIO_CRYSTAL_COVE=m
|
|||||||
CONFIG_GPIO_DA9052=m
|
CONFIG_GPIO_DA9052=m
|
||||||
CONFIG_GPIO_DA9055=m
|
CONFIG_GPIO_DA9055=m
|
||||||
CONFIG_GPIO_DLN2=m
|
CONFIG_GPIO_DLN2=m
|
||||||
# CONFIG_GPIO_ELKHARTLAKE is not set
|
CONFIG_GPIO_ELKHARTLAKE=m
|
||||||
CONFIG_GPIO_JANZ_TTL=m
|
CONFIG_GPIO_JANZ_TTL=m
|
||||||
CONFIG_GPIO_KEMPLD=m
|
CONFIG_GPIO_KEMPLD=m
|
||||||
CONFIG_GPIO_LP3943=m
|
CONFIG_GPIO_LP3943=m
|
||||||
@@ -5248,7 +5251,7 @@ CONFIG_SENSORS_OXP=m
|
|||||||
CONFIG_SENSORS_PCF8591=m
|
CONFIG_SENSORS_PCF8591=m
|
||||||
CONFIG_PMBUS=m
|
CONFIG_PMBUS=m
|
||||||
CONFIG_SENSORS_PMBUS=m
|
CONFIG_SENSORS_PMBUS=m
|
||||||
# CONFIG_SENSORS_ACBEL_FSG032 is not set
|
CONFIG_SENSORS_ACBEL_FSG032=m
|
||||||
CONFIG_SENSORS_ADM1266=m
|
CONFIG_SENSORS_ADM1266=m
|
||||||
CONFIG_SENSORS_ADM1275=m
|
CONFIG_SENSORS_ADM1275=m
|
||||||
CONFIG_SENSORS_BEL_PFE=m
|
CONFIG_SENSORS_BEL_PFE=m
|
||||||
@@ -5735,12 +5738,12 @@ CONFIG_REGULATOR_PV88090=m
|
|||||||
CONFIG_REGULATOR_PWM=m
|
CONFIG_REGULATOR_PWM=m
|
||||||
CONFIG_REGULATOR_RC5T583=m
|
CONFIG_REGULATOR_RC5T583=m
|
||||||
CONFIG_REGULATOR_RT4801=m
|
CONFIG_REGULATOR_RT4801=m
|
||||||
# CONFIG_REGULATOR_RT4803 is not set
|
CONFIG_REGULATOR_RT4803=m
|
||||||
CONFIG_REGULATOR_RT4831=m
|
CONFIG_REGULATOR_RT4831=m
|
||||||
CONFIG_REGULATOR_RT5033=m
|
CONFIG_REGULATOR_RT5033=m
|
||||||
CONFIG_REGULATOR_RT5120=m
|
CONFIG_REGULATOR_RT5120=m
|
||||||
CONFIG_REGULATOR_RT5190A=m
|
CONFIG_REGULATOR_RT5190A=m
|
||||||
# CONFIG_REGULATOR_RT5739 is not set
|
CONFIG_REGULATOR_RT5739=m
|
||||||
CONFIG_REGULATOR_RT5759=m
|
CONFIG_REGULATOR_RT5759=m
|
||||||
CONFIG_REGULATOR_RT6160=m
|
CONFIG_REGULATOR_RT6160=m
|
||||||
CONFIG_REGULATOR_RT6190=m
|
CONFIG_REGULATOR_RT6190=m
|
||||||
@@ -6844,7 +6847,7 @@ CONFIG_FB_EFI=y
|
|||||||
# CONFIG_FB_UDL is not set
|
# CONFIG_FB_UDL is not set
|
||||||
# CONFIG_FB_IBM_GXT4500 is not set
|
# CONFIG_FB_IBM_GXT4500 is not set
|
||||||
# CONFIG_FB_VIRTUAL is not set
|
# CONFIG_FB_VIRTUAL is not set
|
||||||
# CONFIG_XEN_FBDEV_FRONTEND is not set
|
CONFIG_XEN_FBDEV_FRONTEND=m
|
||||||
# CONFIG_FB_METRONOME is not set
|
# CONFIG_FB_METRONOME is not set
|
||||||
# CONFIG_FB_MB862XX is not set
|
# CONFIG_FB_MB862XX is not set
|
||||||
# CONFIG_FB_HYPERV is not set
|
# CONFIG_FB_HYPERV is not set
|
||||||
@@ -6925,7 +6928,7 @@ CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER=y
|
|||||||
CONFIG_DRM_ACCEL=y
|
CONFIG_DRM_ACCEL=y
|
||||||
CONFIG_DRM_ACCEL_HABANALABS=m
|
CONFIG_DRM_ACCEL_HABANALABS=m
|
||||||
CONFIG_DRM_ACCEL_IVPU=m
|
CONFIG_DRM_ACCEL_IVPU=m
|
||||||
# CONFIG_DRM_ACCEL_QAIC is not set
|
CONFIG_DRM_ACCEL_QAIC=m
|
||||||
CONFIG_SOUND=m
|
CONFIG_SOUND=m
|
||||||
CONFIG_SOUND_OSS_CORE=y
|
CONFIG_SOUND_OSS_CORE=y
|
||||||
# CONFIG_SOUND_OSS_CORE_PRECLAIM is not set
|
# CONFIG_SOUND_OSS_CORE_PRECLAIM is not set
|
||||||
@@ -6987,7 +6990,7 @@ CONFIG_SND_SERIAL_U16550=m
|
|||||||
CONFIG_SND_MPU401=m
|
CONFIG_SND_MPU401=m
|
||||||
CONFIG_SND_PORTMAN2X4=m
|
CONFIG_SND_PORTMAN2X4=m
|
||||||
CONFIG_SND_AC97_POWER_SAVE=y
|
CONFIG_SND_AC97_POWER_SAVE=y
|
||||||
CONFIG_SND_AC97_POWER_SAVE_DEFAULT=0
|
CONFIG_SND_AC97_POWER_SAVE_DEFAULT=10
|
||||||
CONFIG_SND_SB_COMMON=m
|
CONFIG_SND_SB_COMMON=m
|
||||||
CONFIG_SND_PCI=y
|
CONFIG_SND_PCI=y
|
||||||
CONFIG_SND_AD1889=m
|
CONFIG_SND_AD1889=m
|
||||||
@@ -7092,7 +7095,7 @@ CONFIG_SND_HDA_CODEC_CA0132_DSP=y
|
|||||||
CONFIG_SND_HDA_CODEC_CMEDIA=m
|
CONFIG_SND_HDA_CODEC_CMEDIA=m
|
||||||
CONFIG_SND_HDA_CODEC_SI3054=m
|
CONFIG_SND_HDA_CODEC_SI3054=m
|
||||||
CONFIG_SND_HDA_GENERIC=m
|
CONFIG_SND_HDA_GENERIC=m
|
||||||
CONFIG_SND_HDA_POWER_SAVE_DEFAULT=1
|
CONFIG_SND_HDA_POWER_SAVE_DEFAULT=10
|
||||||
CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM=y
|
CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM=y
|
||||||
# CONFIG_SND_HDA_CTL_DEV_ID is not set
|
# CONFIG_SND_HDA_CTL_DEV_ID is not set
|
||||||
# end of HD-Audio
|
# end of HD-Audio
|
||||||
@@ -7408,9 +7411,11 @@ CONFIG_SND_SOC_CS35L41_I2C=m
|
|||||||
CONFIG_SND_SOC_CS35L45=m
|
CONFIG_SND_SOC_CS35L45=m
|
||||||
CONFIG_SND_SOC_CS35L45_SPI=m
|
CONFIG_SND_SOC_CS35L45_SPI=m
|
||||||
CONFIG_SND_SOC_CS35L45_I2C=m
|
CONFIG_SND_SOC_CS35L45_I2C=m
|
||||||
# CONFIG_SND_SOC_CS35L56_I2C is not set
|
CONFIG_SND_SOC_CS35L56=m
|
||||||
# CONFIG_SND_SOC_CS35L56_SPI is not set
|
CONFIG_SND_SOC_CS35L56_SHARED=m
|
||||||
# CONFIG_SND_SOC_CS35L56_SDW is not set
|
CONFIG_SND_SOC_CS35L56_I2C=m
|
||||||
|
CONFIG_SND_SOC_CS35L56_SPI=m
|
||||||
|
CONFIG_SND_SOC_CS35L56_SDW=m
|
||||||
CONFIG_SND_SOC_CS42L42_CORE=m
|
CONFIG_SND_SOC_CS42L42_CORE=m
|
||||||
CONFIG_SND_SOC_CS42L42=m
|
CONFIG_SND_SOC_CS42L42=m
|
||||||
CONFIG_SND_SOC_CS42L42_SDW=m
|
CONFIG_SND_SOC_CS42L42_SDW=m
|
||||||
@@ -7458,7 +7463,7 @@ CONFIG_SND_SOC_MAX98504=m
|
|||||||
CONFIG_SND_SOC_MAX9867=m
|
CONFIG_SND_SOC_MAX9867=m
|
||||||
CONFIG_SND_SOC_MAX98927=m
|
CONFIG_SND_SOC_MAX98927=m
|
||||||
CONFIG_SND_SOC_MAX98520=m
|
CONFIG_SND_SOC_MAX98520=m
|
||||||
# CONFIG_SND_SOC_MAX98363 is not set
|
CONFIG_SND_SOC_MAX98363=m
|
||||||
CONFIG_SND_SOC_MAX98373=m
|
CONFIG_SND_SOC_MAX98373=m
|
||||||
CONFIG_SND_SOC_MAX98373_I2C=m
|
CONFIG_SND_SOC_MAX98373_I2C=m
|
||||||
CONFIG_SND_SOC_MAX98373_SDW=m
|
CONFIG_SND_SOC_MAX98373_SDW=m
|
||||||
@@ -7523,7 +7528,7 @@ CONFIG_SND_SOC_RT711=m
|
|||||||
CONFIG_SND_SOC_RT711_SDW=m
|
CONFIG_SND_SOC_RT711_SDW=m
|
||||||
CONFIG_SND_SOC_RT711_SDCA_SDW=m
|
CONFIG_SND_SOC_RT711_SDCA_SDW=m
|
||||||
CONFIG_SND_SOC_RT712_SDCA_SDW=m
|
CONFIG_SND_SOC_RT712_SDCA_SDW=m
|
||||||
# CONFIG_SND_SOC_RT712_SDCA_DMIC_SDW is not set
|
CONFIG_SND_SOC_RT712_SDCA_DMIC_SDW=m
|
||||||
CONFIG_SND_SOC_RT715=m
|
CONFIG_SND_SOC_RT715=m
|
||||||
CONFIG_SND_SOC_RT715_SDW=m
|
CONFIG_SND_SOC_RT715_SDW=m
|
||||||
CONFIG_SND_SOC_RT715_SDCA_SDW=m
|
CONFIG_SND_SOC_RT715_SDCA_SDW=m
|
||||||
@@ -7799,7 +7804,7 @@ CONFIG_USB_HIDDEV=y
|
|||||||
|
|
||||||
CONFIG_I2C_HID=m
|
CONFIG_I2C_HID=m
|
||||||
CONFIG_I2C_HID_ACPI=m
|
CONFIG_I2C_HID_ACPI=m
|
||||||
# CONFIG_I2C_HID_OF is not set
|
CONFIG_I2C_HID_OF=m
|
||||||
CONFIG_I2C_HID_CORE=m
|
CONFIG_I2C_HID_CORE=m
|
||||||
|
|
||||||
#
|
#
|
||||||
@@ -8332,7 +8337,7 @@ CONFIG_LEDS_DA9052=m
|
|||||||
CONFIG_LEDS_DAC124S085=m
|
CONFIG_LEDS_DAC124S085=m
|
||||||
CONFIG_LEDS_PWM=m
|
CONFIG_LEDS_PWM=m
|
||||||
CONFIG_LEDS_REGULATOR=m
|
CONFIG_LEDS_REGULATOR=m
|
||||||
# CONFIG_LEDS_BD2606MVV is not set
|
CONFIG_LEDS_BD2606MVV=m
|
||||||
CONFIG_LEDS_BD2802=m
|
CONFIG_LEDS_BD2802=m
|
||||||
CONFIG_LEDS_INTEL_SS4200=m
|
CONFIG_LEDS_INTEL_SS4200=m
|
||||||
CONFIG_LEDS_LT3593=m
|
CONFIG_LEDS_LT3593=m
|
||||||
@@ -8362,7 +8367,7 @@ CONFIG_LEDS_TPS6105X=m
|
|||||||
#
|
#
|
||||||
CONFIG_LEDS_AS3645A=m
|
CONFIG_LEDS_AS3645A=m
|
||||||
CONFIG_LEDS_LM3601X=m
|
CONFIG_LEDS_LM3601X=m
|
||||||
# CONFIG_LEDS_MT6370_FLASH is not set
|
CONFIG_LEDS_MT6370_FLASH=m
|
||||||
CONFIG_LEDS_RT8515=m
|
CONFIG_LEDS_RT8515=m
|
||||||
CONFIG_LEDS_SGM3140=m
|
CONFIG_LEDS_SGM3140=m
|
||||||
|
|
||||||
@@ -8370,7 +8375,7 @@ CONFIG_LEDS_SGM3140=m
|
|||||||
# RGB LED drivers
|
# RGB LED drivers
|
||||||
#
|
#
|
||||||
CONFIG_LEDS_PWM_MULTICOLOR=m
|
CONFIG_LEDS_PWM_MULTICOLOR=m
|
||||||
# CONFIG_LEDS_MT6370_RGB is not set
|
CONFIG_LEDS_MT6370_RGB=m
|
||||||
|
|
||||||
#
|
#
|
||||||
# LED Triggers
|
# LED Triggers
|
||||||
@@ -8864,17 +8869,7 @@ CONFIG_AD2S1210=m
|
|||||||
|
|
||||||
# CONFIG_FB_SM750 is not set
|
# CONFIG_FB_SM750 is not set
|
||||||
CONFIG_STAGING_MEDIA=y
|
CONFIG_STAGING_MEDIA=y
|
||||||
CONFIG_INTEL_ATOMISP=y
|
# CONFIG_INTEL_ATOMISP is not set
|
||||||
CONFIG_VIDEO_ATOMISP=m
|
|
||||||
CONFIG_VIDEO_ATOMISP_ISP2401=y
|
|
||||||
CONFIG_VIDEO_ATOMISP_OV2722=m
|
|
||||||
CONFIG_VIDEO_ATOMISP_GC2235=m
|
|
||||||
CONFIG_VIDEO_ATOMISP_MSRLIST_HELPER=m
|
|
||||||
CONFIG_VIDEO_ATOMISP_MT9M114=m
|
|
||||||
CONFIG_VIDEO_ATOMISP_GC0310=m
|
|
||||||
CONFIG_VIDEO_ATOMISP_OV2680=m
|
|
||||||
CONFIG_VIDEO_ATOMISP_OV5693=m
|
|
||||||
CONFIG_VIDEO_ATOMISP_LM3554=m
|
|
||||||
CONFIG_DVB_AV7110_IR=y
|
CONFIG_DVB_AV7110_IR=y
|
||||||
CONFIG_DVB_AV7110=m
|
CONFIG_DVB_AV7110=m
|
||||||
CONFIG_DVB_AV7110_OSD=y
|
CONFIG_DVB_AV7110_OSD=y
|
||||||
@@ -8994,7 +8989,7 @@ CONFIG_HP_WMI=m
|
|||||||
CONFIG_WIRELESS_HOTKEY=m
|
CONFIG_WIRELESS_HOTKEY=m
|
||||||
CONFIG_IBM_RTL=m
|
CONFIG_IBM_RTL=m
|
||||||
CONFIG_IDEAPAD_LAPTOP=m
|
CONFIG_IDEAPAD_LAPTOP=m
|
||||||
# CONFIG_LENOVO_YMC is not set
|
CONFIG_LENOVO_YMC=m
|
||||||
CONFIG_SENSORS_HDAPS=m
|
CONFIG_SENSORS_HDAPS=m
|
||||||
CONFIG_THINKPAD_ACPI=m
|
CONFIG_THINKPAD_ACPI=m
|
||||||
CONFIG_THINKPAD_ACPI_ALSA_SUPPORT=y
|
CONFIG_THINKPAD_ACPI_ALSA_SUPPORT=y
|
||||||
@@ -9006,6 +9001,7 @@ CONFIG_THINKPAD_ACPI_HOTKEY_POLL=y
|
|||||||
CONFIG_THINKPAD_LMI=m
|
CONFIG_THINKPAD_LMI=m
|
||||||
CONFIG_INTEL_ATOMISP2_PDX86=y
|
CONFIG_INTEL_ATOMISP2_PDX86=y
|
||||||
CONFIG_INTEL_ATOMISP2_LED=m
|
CONFIG_INTEL_ATOMISP2_LED=m
|
||||||
|
CONFIG_INTEL_ATOMISP2_PM=m
|
||||||
CONFIG_INTEL_IFS=m
|
CONFIG_INTEL_IFS=m
|
||||||
CONFIG_INTEL_SAR_INT1092=m
|
CONFIG_INTEL_SAR_INT1092=m
|
||||||
CONFIG_INTEL_SKL_INT3472=m
|
CONFIG_INTEL_SKL_INT3472=m
|
||||||
@@ -9037,7 +9033,7 @@ CONFIG_INTEL_VBTN=m
|
|||||||
CONFIG_INTEL_INT0002_VGPIO=m
|
CONFIG_INTEL_INT0002_VGPIO=m
|
||||||
CONFIG_INTEL_OAKTRAIL=m
|
CONFIG_INTEL_OAKTRAIL=m
|
||||||
CONFIG_INTEL_BXTWC_PMIC_TMU=m
|
CONFIG_INTEL_BXTWC_PMIC_TMU=m
|
||||||
# CONFIG_INTEL_BYTCRC_PWRSRC is not set
|
CONFIG_INTEL_BYTCRC_PWRSRC=m
|
||||||
CONFIG_INTEL_CHTDC_TI_PWRBTN=m
|
CONFIG_INTEL_CHTDC_TI_PWRBTN=m
|
||||||
CONFIG_INTEL_CHTWC_INT33FE=m
|
CONFIG_INTEL_CHTWC_INT33FE=m
|
||||||
CONFIG_INTEL_ISHTP_ECLITE=m
|
CONFIG_INTEL_ISHTP_ECLITE=m
|
||||||
@@ -9049,7 +9045,7 @@ CONFIG_INTEL_SMARTCONNECT=m
|
|||||||
CONFIG_INTEL_TPMI=m
|
CONFIG_INTEL_TPMI=m
|
||||||
CONFIG_INTEL_TURBO_MAX_3=y
|
CONFIG_INTEL_TURBO_MAX_3=y
|
||||||
CONFIG_INTEL_VSEC=m
|
CONFIG_INTEL_VSEC=m
|
||||||
# CONFIG_MSI_EC is not set
|
CONFIG_MSI_EC=m
|
||||||
CONFIG_MSI_LAPTOP=m
|
CONFIG_MSI_LAPTOP=m
|
||||||
CONFIG_MSI_WMI=m
|
CONFIG_MSI_WMI=m
|
||||||
CONFIG_PCENGINES_APU2=m
|
CONFIG_PCENGINES_APU2=m
|
||||||
@@ -9165,7 +9161,7 @@ CONFIG_SOUNDWIRE=m
|
|||||||
#
|
#
|
||||||
# SoundWire Devices
|
# SoundWire Devices
|
||||||
#
|
#
|
||||||
# CONFIG_SOUNDWIRE_AMD is not set
|
CONFIG_SOUNDWIRE_AMD=m
|
||||||
CONFIG_SOUNDWIRE_CADENCE=m
|
CONFIG_SOUNDWIRE_CADENCE=m
|
||||||
CONFIG_SOUNDWIRE_INTEL=m
|
CONFIG_SOUNDWIRE_INTEL=m
|
||||||
CONFIG_SOUNDWIRE_QCOM=m
|
CONFIG_SOUNDWIRE_QCOM=m
|
||||||
@@ -9271,6 +9267,7 @@ CONFIG_IIO_BUFFER_HW_CONSUMER=m
|
|||||||
CONFIG_IIO_KFIFO_BUF=m
|
CONFIG_IIO_KFIFO_BUF=m
|
||||||
CONFIG_IIO_TRIGGERED_BUFFER=m
|
CONFIG_IIO_TRIGGERED_BUFFER=m
|
||||||
CONFIG_IIO_CONFIGFS=m
|
CONFIG_IIO_CONFIGFS=m
|
||||||
|
CONFIG_IIO_GTS_HELPER=m
|
||||||
CONFIG_IIO_TRIGGER=y
|
CONFIG_IIO_TRIGGER=y
|
||||||
CONFIG_IIO_CONSUMERS_PER_TRIGGER=2
|
CONFIG_IIO_CONSUMERS_PER_TRIGGER=2
|
||||||
CONFIG_IIO_SW_DEVICE=m
|
CONFIG_IIO_SW_DEVICE=m
|
||||||
@@ -9410,7 +9407,7 @@ CONFIG_TI_ADC128S052=m
|
|||||||
CONFIG_TI_ADC161S626=m
|
CONFIG_TI_ADC161S626=m
|
||||||
CONFIG_TI_ADS1015=m
|
CONFIG_TI_ADS1015=m
|
||||||
CONFIG_TI_ADS7924=m
|
CONFIG_TI_ADS7924=m
|
||||||
# CONFIG_TI_ADS1100 is not set
|
CONFIG_TI_ADS1100=m
|
||||||
CONFIG_TI_ADS7950=m
|
CONFIG_TI_ADS7950=m
|
||||||
CONFIG_TI_ADS8344=m
|
CONFIG_TI_ADS8344=m
|
||||||
CONFIG_TI_ADS8688=m
|
CONFIG_TI_ADS8688=m
|
||||||
@@ -9705,7 +9702,7 @@ CONFIG_ISL29125=m
|
|||||||
CONFIG_HID_SENSOR_ALS=m
|
CONFIG_HID_SENSOR_ALS=m
|
||||||
CONFIG_HID_SENSOR_PROX=m
|
CONFIG_HID_SENSOR_PROX=m
|
||||||
CONFIG_JSA1212=m
|
CONFIG_JSA1212=m
|
||||||
# CONFIG_ROHM_BU27034 is not set
|
CONFIG_ROHM_BU27034=m
|
||||||
CONFIG_RPR0521=m
|
CONFIG_RPR0521=m
|
||||||
CONFIG_SENSORS_LM3533=m
|
CONFIG_SENSORS_LM3533=m
|
||||||
CONFIG_LTR501=m
|
CONFIG_LTR501=m
|
||||||
@@ -10008,8 +10005,8 @@ CONFIG_NVMEM_SYSFS=y
|
|||||||
#
|
#
|
||||||
# Layout Types
|
# Layout Types
|
||||||
#
|
#
|
||||||
# CONFIG_NVMEM_LAYOUT_SL28_VPD is not set
|
CONFIG_NVMEM_LAYOUT_SL28_VPD=m
|
||||||
# CONFIG_NVMEM_LAYOUT_ONIE_TLV is not set
|
CONFIG_NVMEM_LAYOUT_ONIE_TLV=m
|
||||||
# end of Layout Types
|
# end of Layout Types
|
||||||
|
|
||||||
CONFIG_NVMEM_RAVE_SP_EEPROM=m
|
CONFIG_NVMEM_RAVE_SP_EEPROM=m
|
||||||
@@ -10434,7 +10431,7 @@ CONFIG_SMB_SERVER=m
|
|||||||
CONFIG_SMB_SERVER_SMBDIRECT=y
|
CONFIG_SMB_SERVER_SMBDIRECT=y
|
||||||
CONFIG_SMB_SERVER_CHECK_CAP_NET_ADMIN=y
|
CONFIG_SMB_SERVER_CHECK_CAP_NET_ADMIN=y
|
||||||
CONFIG_SMB_SERVER_KERBEROS5=y
|
CONFIG_SMB_SERVER_KERBEROS5=y
|
||||||
CONFIG_SMBFS_COMMON=m
|
CONFIG_SMBFS=m
|
||||||
CONFIG_CODA_FS=m
|
CONFIG_CODA_FS=m
|
||||||
CONFIG_AFS_FS=m
|
CONFIG_AFS_FS=m
|
||||||
# CONFIG_AFS_DEBUG is not set
|
# CONFIG_AFS_DEBUG is not set
|
||||||
@@ -11346,7 +11343,7 @@ CONFIG_FTRACE_MCOUNT_RECORD=y
|
|||||||
CONFIG_FTRACE_MCOUNT_USE_CC=y
|
CONFIG_FTRACE_MCOUNT_USE_CC=y
|
||||||
CONFIG_TRACING_MAP=y
|
CONFIG_TRACING_MAP=y
|
||||||
CONFIG_SYNTH_EVENTS=y
|
CONFIG_SYNTH_EVENTS=y
|
||||||
# CONFIG_USER_EVENTS is not set
|
CONFIG_USER_EVENTS=y
|
||||||
CONFIG_HIST_TRIGGERS=y
|
CONFIG_HIST_TRIGGERS=y
|
||||||
# CONFIG_TRACE_EVENT_INJECT is not set
|
# CONFIG_TRACE_EVENT_INJECT is not set
|
||||||
# CONFIG_TRACEPOINT_BENCHMARK is not set
|
# CONFIG_TRACEPOINT_BENCHMARK is not set
|
||||||
|
@@ -289,6 +289,8 @@ _set_cpu_scheduler() {
|
|||||||
_avail_cpu_scheds=("cfs" "pds" "bmq" "tt" "bore")
|
_avail_cpu_scheds=("cfs" "pds" "bmq" "tt" "bore")
|
||||||
elif [ "$_kver" = "603" ]; then
|
elif [ "$_kver" = "603" ]; then
|
||||||
_avail_cpu_scheds=("cfs" "pds" "bmq" "tt" "bore")
|
_avail_cpu_scheds=("cfs" "pds" "bmq" "tt" "bore")
|
||||||
|
elif [ "$_kver" = "604" ]; then
|
||||||
|
_avail_cpu_scheds=("cfs" "pds" "bmq" "tt" "bore")
|
||||||
else
|
else
|
||||||
_avail_cpu_scheds=("cfs")
|
_avail_cpu_scheds=("cfs")
|
||||||
fi
|
fi
|
||||||
@@ -878,10 +880,9 @@ _tkg_srcprep() {
|
|||||||
# buggy project C/PSI interaction workaround
|
# buggy project C/PSI interaction workaround
|
||||||
if [ "${_cpusched}" = "pds" ] || [ "${_cpusched}" = "bmq" ]; then
|
if [ "${_cpusched}" = "pds" ] || [ "${_cpusched}" = "bmq" ]; then
|
||||||
_enable "PSI_DEFAULT_DISABLED"
|
_enable "PSI_DEFAULT_DISABLED"
|
||||||
# Disable MLX5_CORE on Prjc 6.3.y
|
# Disable MLX5_CORE on Prjc
|
||||||
if [ "$_kver" = "603" ]; then
|
plain "Disable MLX5_CORE for Prjc"
|
||||||
_disable "MLX5_CORE"
|
_disable "MLX5_CORE"
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -n "$_custom_commandline" ]; then
|
if [ -n "$_custom_commandline" ]; then
|
||||||
|
90
linux-tkg-patches/6.4/0005-glitched-pds.patch
Normal file
90
linux-tkg-patches/6.4/0005-glitched-pds.patch
Normal file
@@ -0,0 +1,90 @@
|
|||||||
|
From f7f49141a5dbe9c99d78196b58c44307fb2e6be3 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Tk-Glitch <ti3nou@gmail.com>
|
||||||
|
Date: Wed, 4 Jul 2018 04:30:08 +0200
|
||||||
|
Subject: glitched - PDS
|
||||||
|
|
||||||
|
diff --git a/kernel/Kconfig.hz b/kernel/Kconfig.hz
|
||||||
|
index 2a202a846757..1d9c7ed79b11 100644
|
||||||
|
--- a/kernel/Kconfig.hz
|
||||||
|
+++ b/kernel/Kconfig.hz
|
||||||
|
@@ -4,7 +4,7 @@
|
||||||
|
|
||||||
|
choice
|
||||||
|
prompt "Timer frequency"
|
||||||
|
- default HZ_250
|
||||||
|
+ default HZ_500
|
||||||
|
help
|
||||||
|
Allows the configuration of the timer frequency. It is customary
|
||||||
|
to have the timer interrupt run at 1000 Hz but 100 Hz may be more
|
||||||
|
@@ -39,6 +39,13 @@ choice
|
||||||
|
on SMP and NUMA systems and exactly dividing by both PAL and
|
||||||
|
NTSC frame rates for video and multimedia work.
|
||||||
|
|
||||||
|
+ config HZ_500
|
||||||
|
+ bool "500 HZ"
|
||||||
|
+ help
|
||||||
|
+ 500 Hz is a balanced timer frequency. Provides fast interactivity
|
||||||
|
+ on desktops with great smoothness without increasing CPU power
|
||||||
|
+ consumption and sacrificing the battery life on laptops.
|
||||||
|
+
|
||||||
|
config HZ_1000
|
||||||
|
bool "1000 HZ"
|
||||||
|
help
|
||||||
|
@@ -52,6 +59,7 @@ config HZ
|
||||||
|
default 100 if HZ_100
|
||||||
|
default 250 if HZ_250
|
||||||
|
default 300 if HZ_300
|
||||||
|
+ default 500 if HZ_500
|
||||||
|
default 1000 if HZ_1000
|
||||||
|
|
||||||
|
config SCHED_HRTICK
|
||||||
|
|
||||||
|
diff --git a/kernel/Kconfig.hz b/kernel/Kconfig.hz
|
||||||
|
index 2a202a846757..1d9c7ed79b11 100644
|
||||||
|
--- a/kernel/Kconfig.hz
|
||||||
|
+++ b/kernel/Kconfig.hz
|
||||||
|
@@ -4,7 +4,7 @@
|
||||||
|
|
||||||
|
choice
|
||||||
|
prompt "Timer frequency"
|
||||||
|
- default HZ_500
|
||||||
|
+ default HZ_750
|
||||||
|
help
|
||||||
|
Allows the configuration of the timer frequency. It is customary
|
||||||
|
to have the timer interrupt run at 1000 Hz but 100 Hz may be more
|
||||||
|
@@ -46,6 +46,13 @@ choice
|
||||||
|
on desktops with great smoothness without increasing CPU power
|
||||||
|
consumption and sacrificing the battery life on laptops.
|
||||||
|
|
||||||
|
+ config HZ_750
|
||||||
|
+ bool "750 HZ"
|
||||||
|
+ help
|
||||||
|
+ 750 Hz is a good timer frequency for desktops. Provides fast
|
||||||
|
+ interactivity with great smoothness without sacrificing too
|
||||||
|
+ much throughput.
|
||||||
|
+
|
||||||
|
config HZ_1000
|
||||||
|
bool "1000 HZ"
|
||||||
|
help
|
||||||
|
@@ -60,6 +67,7 @@ config HZ
|
||||||
|
default 250 if HZ_250
|
||||||
|
default 300 if HZ_300
|
||||||
|
default 500 if HZ_500
|
||||||
|
+ default 750 if HZ_750
|
||||||
|
default 1000 if HZ_1000
|
||||||
|
|
||||||
|
config SCHED_HRTICK
|
||||||
|
|
||||||
|
diff --git a/mm/vmscan.c b/mm/vmscan.c
|
||||||
|
index 9270a4370d54..30d01e647417 100644
|
||||||
|
--- a/mm/vmscan.c
|
||||||
|
+++ b/mm/vmscan.c
|
||||||
|
@@ -169,7 +169,7 @@
|
||||||
|
/*
|
||||||
|
* From 0 .. 200. Higher means more swappy.
|
||||||
|
*/
|
||||||
|
-int vm_swappiness = 60;
|
||||||
|
+int vm_swappiness = 20;
|
||||||
|
|
||||||
|
static void set_task_reclaim_state(struct task_struct *task,
|
||||||
|
struct reclaim_state *rs)
|
90
linux-tkg-patches/6.4/0009-glitched-bmq.patch
Normal file
90
linux-tkg-patches/6.4/0009-glitched-bmq.patch
Normal file
@@ -0,0 +1,90 @@
|
|||||||
|
From f7f49141a5dbe9c99d78196b58c44307fb2e6be3 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Tk-Glitch <ti3nou@gmail.com>
|
||||||
|
Date: Wed, 4 Jul 2018 04:30:08 +0200
|
||||||
|
Subject: glitched - BMQ
|
||||||
|
|
||||||
|
diff --git a/kernel/Kconfig.hz b/kernel/Kconfig.hz
|
||||||
|
index 2a202a846757..1d9c7ed79b11 100644
|
||||||
|
--- a/kernel/Kconfig.hz
|
||||||
|
+++ b/kernel/Kconfig.hz
|
||||||
|
@@ -4,7 +4,7 @@
|
||||||
|
|
||||||
|
choice
|
||||||
|
prompt "Timer frequency"
|
||||||
|
- default HZ_250
|
||||||
|
+ default HZ_500
|
||||||
|
help
|
||||||
|
Allows the configuration of the timer frequency. It is customary
|
||||||
|
to have the timer interrupt run at 1000 Hz but 100 Hz may be more
|
||||||
|
@@ -39,6 +39,13 @@ choice
|
||||||
|
on SMP and NUMA systems and exactly dividing by both PAL and
|
||||||
|
NTSC frame rates for video and multimedia work.
|
||||||
|
|
||||||
|
+ config HZ_500
|
||||||
|
+ bool "500 HZ"
|
||||||
|
+ help
|
||||||
|
+ 500 Hz is a balanced timer frequency. Provides fast interactivity
|
||||||
|
+ on desktops with great smoothness without increasing CPU power
|
||||||
|
+ consumption and sacrificing the battery life on laptops.
|
||||||
|
+
|
||||||
|
config HZ_1000
|
||||||
|
bool "1000 HZ"
|
||||||
|
help
|
||||||
|
@@ -52,6 +59,7 @@ config HZ
|
||||||
|
default 100 if HZ_100
|
||||||
|
default 250 if HZ_250
|
||||||
|
default 300 if HZ_300
|
||||||
|
+ default 500 if HZ_500
|
||||||
|
default 1000 if HZ_1000
|
||||||
|
|
||||||
|
config SCHED_HRTICK
|
||||||
|
|
||||||
|
diff --git a/kernel/Kconfig.hz b/kernel/Kconfig.hz
|
||||||
|
index 2a202a846757..1d9c7ed79b11 100644
|
||||||
|
--- a/kernel/Kconfig.hz
|
||||||
|
+++ b/kernel/Kconfig.hz
|
||||||
|
@@ -4,7 +4,7 @@
|
||||||
|
|
||||||
|
choice
|
||||||
|
prompt "Timer frequency"
|
||||||
|
- default HZ_500
|
||||||
|
+ default HZ_750
|
||||||
|
help
|
||||||
|
Allows the configuration of the timer frequency. It is customary
|
||||||
|
to have the timer interrupt run at 1000 Hz but 100 Hz may be more
|
||||||
|
@@ -46,6 +46,13 @@ choice
|
||||||
|
on desktops with great smoothness without increasing CPU power
|
||||||
|
consumption and sacrificing the battery life on laptops.
|
||||||
|
|
||||||
|
+ config HZ_750
|
||||||
|
+ bool "750 HZ"
|
||||||
|
+ help
|
||||||
|
+ 750 Hz is a good timer frequency for desktops. Provides fast
|
||||||
|
+ interactivity with great smoothness without sacrificing too
|
||||||
|
+ much throughput.
|
||||||
|
+
|
||||||
|
config HZ_1000
|
||||||
|
bool "1000 HZ"
|
||||||
|
help
|
||||||
|
@@ -60,6 +67,7 @@ config HZ
|
||||||
|
default 250 if HZ_250
|
||||||
|
default 300 if HZ_300
|
||||||
|
default 500 if HZ_500
|
||||||
|
+ default 750 if HZ_750
|
||||||
|
default 1000 if HZ_1000
|
||||||
|
|
||||||
|
config SCHED_HRTICK
|
||||||
|
|
||||||
|
diff --git a/mm/vmscan.c b/mm/vmscan.c
|
||||||
|
index 9270a4370d54..30d01e647417 100644
|
||||||
|
--- a/mm/vmscan.c
|
||||||
|
+++ b/mm/vmscan.c
|
||||||
|
@@ -169,7 +169,7 @@
|
||||||
|
/*
|
||||||
|
* From 0 .. 200. Higher means more swappy.
|
||||||
|
*/
|
||||||
|
-int vm_swappiness = 60;
|
||||||
|
+int vm_swappiness = 20;
|
||||||
|
|
||||||
|
static void set_task_reclaim_state(struct task_struct *task,
|
||||||
|
struct reclaim_state *rs)
|
18
linux-tkg-patches/6.4/0009-glitched-ondemand-bmq.patch
Normal file
18
linux-tkg-patches/6.4/0009-glitched-ondemand-bmq.patch
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
diff --git a/drivers/cpufreq/cpufreq_ondemand.c b/drivers/cpufreq/cpufreq_ondemand.c
|
||||||
|
index 6b423eebfd5d..61e3271675d6 100644
|
||||||
|
--- a/drivers/cpufreq/cpufreq_ondemand.c
|
||||||
|
+++ b/drivers/cpufreq/cpufreq_ondemand.c
|
||||||
|
@@ -21,10 +21,10 @@
|
||||||
|
#include "cpufreq_ondemand.h"
|
||||||
|
|
||||||
|
/* On-demand governor macros */
|
||||||
|
-#define DEF_FREQUENCY_UP_THRESHOLD (80)
|
||||||
|
-#define DEF_SAMPLING_DOWN_FACTOR (1)
|
||||||
|
+#define DEF_FREQUENCY_UP_THRESHOLD (55)
|
||||||
|
+#define DEF_SAMPLING_DOWN_FACTOR (5)
|
||||||
|
#define MAX_SAMPLING_DOWN_FACTOR (100000)
|
||||||
|
-#define MICRO_FREQUENCY_UP_THRESHOLD (95)
|
||||||
|
+#define MICRO_FREQUENCY_UP_THRESHOLD (63)
|
||||||
|
#define MICRO_FREQUENCY_MIN_SAMPLE_RATE (10000)
|
||||||
|
#define MIN_FREQUENCY_UP_THRESHOLD (1)
|
||||||
|
#define MAX_FREQUENCY_UP_THRESHOLD (100)
|
11163
linux-tkg-patches/6.4/0009-prjc_v6.4-r0.patch
Normal file
11163
linux-tkg-patches/6.4/0009-prjc_v6.4-r0.patch
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user