Re: [PATCH] Kconfig: Remove an impossible condition

2023-04-27 Thread Andre Przywara
On Sun, 22 Jan 2023 11:23:51 -0600 Samuel Holland wrote: > ARCH_SUNXI selects BINMAN, so the condition "!BINMAN && ARCH_SUNXI" > is impossible to satisfy. Indeed the generic ARCH_SUNXI entry in arch/arm/Kconfig selects BINMAN, so that looks fine. The same seems to be true for ARCH_ROCKCHIP, btw.

[PATCH] Kconfig: Remove an impossible condition

2023-01-22 Thread Samuel Holland
ARCH_SUNXI selects BINMAN, so the condition "!BINMAN && ARCH_SUNXI" is impossible to satisfy. Signed-off-by: Samuel Holland --- Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kconfig b/Kconfig index a75cce7e28..f810646e8a 100644 --- a/Kconfig +++ b/Kconfig @@ -459,7