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.6 required=3.0 tests=DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_PASS,T_DKIM_INVALID, USER_AGENT_GIT 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 1B944ECDFB8 for ; Tue, 24 Jul 2018 17:57:01 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id CA76820844 for ; Tue, 24 Jul 2018 17:57:00 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="LsPl+CfY" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org CA76820844 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 S2388568AbeGXTEf (ORCPT ); Tue, 24 Jul 2018 15:04:35 -0400 Received: from bombadil.infradead.org ([198.137.202.133]:41742 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2388386AbeGXTEf (ORCPT ); Tue, 24 Jul 2018 15:04:35 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20170209; h=Message-Id:Date:Subject:Cc:To:From: Sender:Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=yuhUQKXjRDISUNAiBc20FnauPhC1XyzCmnCDpE1YbNU=; b=LsPl+CfY1t+zAda64JeV0QdKC pIxNpafISy/AZ34ctPMXNKl5/TDNX0xVgUlGUZMl/n81oTJgnrJ9bns6I/H1uKIZI0WdaUmpy6kvG mSVKV2O+M7qlP8Kzf7kU4Y7cQWLkvj1AktNKznDDl/PkKEkwYX5kHiBc52MxYKhqMfRx8dt4HH0Pb HGllJcQgP+TWjMFEKnkSne/S4aP3kmx4klpTtkbnPDTPphQayEXYCeY+ZdEBD/qNlLPZAefZpJh2D JlTFMeVZIzj3LuQaIcRO2dtPJPae7K/r4iEeBPo548NuRHqBqdsqBKf9FheqdUJIky/WqbswxVAOc bGUzAy+Hg==; Received: from 089144194224.atnat0003.highway.a1.net ([89.144.194.224] helo=localhost) by bombadil.infradead.org with esmtpsa (Exim 4.90_1 #2 (Red Hat Linux)) id 1fi1YI-00072V-1o; Tue, 24 Jul 2018 17:56:50 +0000 From: Christoph Hellwig To: Masahiro Yamada Cc: Randy Dunlap , Richard Weinberger , Ley Foon Tan , Michal Simek , linux-kbuild@vger.kernel.org, linux-um@lists.infradead.org, linux-arch@lists.infradead.org, linux-kernel@vger.kernel.org Subject: include architecture Kconfig files from top-level Kconfig v3 Date: Tue, 24 Jul 2018 19:56:36 +0200 Message-Id: <20180724175646.3621-1-hch@lst.de> X-Mailer: git-send-email 2.18.0 X-SRS-Rewrite: SMTP reverse-path rewritten from by bombadil.infradead.org. See http://www.infradead.org/rpr.html Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Masahiro, what do you think about the series below, which moves the includes of all the architecture independ Kconfig files to the top-level Kconfig instead of duplicating the includes in all architectures? Note that this only handles the low-hanging fruite, there are a lot of other bits that should probably be cleaned up to be common, but those will be not entirely trivial. Changes since v2: - fix the missing sh conversion - handle the lack of CONFIG_SWAP support in microblaze and nios2 properly Changes since v1: - add back a remove source statement from arch/arm/Kconfig - various fixes from Randy - various UML patches to be able to use the common Kconfig