From 4eb9eebd05b5bbe2e1d756bfec7a2d183e996c12 Mon Sep 17 00:00:00 2001 From: Tony Butler Date: Mon, 28 Nov 2022 04:05:30 -0800 Subject: [PATCH] build: config: cleanup impossible dependency logic some config `depends on` lines contained outdated kernel version checks that can no longer happen and had become non-operational; clean them up cosmetic change with no functional effect Signed-off-by: Tony Butler --- config/Config-images.in | 1 - config/Config-kernel.in | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/config/Config-images.in b/config/Config-images.in index 4e1c8a47a..65fe04876 100644 --- a/config/Config-images.in +++ b/config/Config-images.in @@ -48,7 +48,6 @@ menu "Target Images" bool "xz" config TARGET_INITRAMFS_COMPRESSION_ZSTD - depends on !LINUX_5_4 && !LINUX_4_19 bool "zstd" endchoice diff --git a/config/Config-kernel.in b/config/Config-kernel.in index e681f3cda..7c6e0e5a8 100644 --- a/config/Config-kernel.in +++ b/config/Config-kernel.in @@ -681,7 +681,7 @@ if KERNEL_CGROUPS bool "Memory Resource Controller for Control Groups" default y select KERNEL_FREEZER - depends on KERNEL_RESOURCE_COUNTERS || !LINUX_3_18 + depends on KERNEL_RESOURCE_COUNTERS help Provides a memory resource controller that manages both anonymous memory and page cache. (See Documentation/cgroups/memory.txt)