From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-2.3 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_PASS,USER_AGENT_MUTT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id E89C5C468C6 for ; Thu, 19 Jul 2018 13:09:03 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id A558D20671 for ; Thu, 19 Jul 2018 13:09:03 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org A558D20671 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=lst.de Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731620AbeGSNwH (ORCPT ); Thu, 19 Jul 2018 09:52:07 -0400 Received: from verein.lst.de ([213.95.11.211]:33339 "EHLO newverein.lst.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730096AbeGSNwH (ORCPT ); Thu, 19 Jul 2018 09:52:07 -0400 Received: by newverein.lst.de (Postfix, from userid 2407) id 6EBE268D43; Thu, 19 Jul 2018 15:11:49 +0200 (CEST) Date: Thu, 19 Jul 2018 15:11:49 +0200 From: Christoph Hellwig To: Randy Dunlap Cc: Masahiro Yamada , Christoph Hellwig , Richard Weinberger , Linux Kbuild mailing list , linux-um@lists.infradead.org, Linux Kernel Mailing List Subject: Re: [PATCH 4/9] kconfig: include common Kconfig files from top-level Kconfig Message-ID: <20180719131149.GA12480@lst.de> References: <20180708152004.21679-1-hch@lst.de> <20180708152004.21679-5-hch@lst.de> <17c45e87-d9be-8453-1bce-18753e0a68b9@infradead.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <17c45e87-d9be-8453-1bce-18753e0a68b9@infradead.org> User-Agent: Mutt/1.5.17 (2007-11-01) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Jul 18, 2018 at 12:06:26AM -0700, Randy Dunlap wrote: > All $ARCH look equivalent except for microblaze and nios2. > For those, the config SWAP in init/Kconfig (line 221) comes before (and > hence takes precedence) over arch/$(SRCARCH)/Kconfig settings, which is > def_bool n for both microblaze and nios2. Both of those are NOMMU architectures, so the default SWAP decaration should do the right thing. I wish the kconfig tools could warn about duplicate symbols, as they are basically always bogus or at least very problematic. I've update the kconfig-cleanup branch in git with the fixes, but I didn't have time to do anything but a trivial x86 test yet.