From: Sascha Hauer <s.hauer@pengutronix.de>
To: Antony Pavlov <antonynpavlov@gmail.com>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH] kconfig: include common Kconfig files from top-level Kconfig
Date: Mon, 3 Dec 2018 08:43:52 +0100 [thread overview]
Message-ID: <20181203074352.qosjci36mkn3m3cb@pengutronix.de> (raw)
In-Reply-To: <20181129221428.4505-1-antonynpavlov@gmail.com>
On Fri, Nov 30, 2018 at 01:14:28AM +0300, Antony Pavlov wrote:
> Based on this linux kernel commit:
>
> > commit 1572497cb0e6d2016078bc9d5a95786bb878389f
> > Author: Christoph Hellwig <hch@lst.de>
> > Date: Tue Jul 31 13:39:30 2018 +0200
> >
> > kconfig: include common Kconfig files from top-level Kconfig
>
> Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>
> ---
Applied, thanks
Sascha
> Kconfig | 8 ++++++++
> arch/arm/Kconfig | 9 ---------
> arch/blackfin/Kconfig | 8 --------
> arch/mips/Kconfig | 8 --------
> arch/nios2/Kconfig | 8 --------
> arch/openrisc/Kconfig | 8 --------
> arch/ppc/Kconfig | 7 -------
> arch/sandbox/Kconfig | 8 --------
> arch/x86/Kconfig | 8 --------
> 9 files changed, 8 insertions(+), 64 deletions(-)
>
> diff --git a/Kconfig b/Kconfig
> index 197dd1c4b3..5c99e666c0 100644
> --- a/Kconfig
> +++ b/Kconfig
> @@ -10,4 +10,12 @@ config SRCARCH
>
> source "arch/$SRCARCH/Kconfig"
>
> +source common/Kconfig
> +source commands/Kconfig
> +source net/Kconfig
> +source drivers/Kconfig
> +source fs/Kconfig
> +source lib/Kconfig
> +source crypto/Kconfig
> +source firmware/Kconfig
> source "scripts/Kconfig"
> diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
> index 3b486f7b8b..cdc22efdeb 100644
> --- a/arch/arm/Kconfig
> +++ b/arch/arm/Kconfig
> @@ -412,12 +412,3 @@ config ARM_PSCI_DEBUG
> Only use for debugging.
>
> endmenu
> -
> -source common/Kconfig
> -source commands/Kconfig
> -source net/Kconfig
> -source drivers/Kconfig
> -source fs/Kconfig
> -source lib/Kconfig
> -source crypto/Kconfig
> -source firmware/Kconfig
> diff --git a/arch/blackfin/Kconfig b/arch/blackfin/Kconfig
> index 6233614e19..c9b5512c0a 100644
> --- a/arch/blackfin/Kconfig
> +++ b/arch/blackfin/Kconfig
> @@ -64,11 +64,3 @@ config BFIN_BOOT_FLASH16
> blackfin is strapped to boot from 16bit wide flash via boot ROM
>
> endchoice
> -
> -source common/Kconfig
> -source commands/Kconfig
> -source net/Kconfig
> -source drivers/Kconfig
> -source fs/Kconfig
> -source lib/Kconfig
> -source crypto/Kconfig
> diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig
> index 524375a81a..7c40991cab 100644
> --- a/arch/mips/Kconfig
> +++ b/arch/mips/Kconfig
> @@ -353,11 +353,3 @@ config MIPS_OPTIMIZED_STRING_FUNCTIONS
> increase your binary size.
>
> endmenu
> -
> -source common/Kconfig
> -source commands/Kconfig
> -source net/Kconfig
> -source drivers/Kconfig
> -source fs/Kconfig
> -source lib/Kconfig
> -source crypto/Kconfig
> diff --git a/arch/nios2/Kconfig b/arch/nios2/Kconfig
> index 199540ba74..c7c13a464b 100644
> --- a/arch/nios2/Kconfig
> +++ b/arch/nios2/Kconfig
> @@ -27,11 +27,3 @@ config EARLY_PRINTF
> bool "Enable early printf functions"
>
> endmenu
> -
> -source common/Kconfig
> -source commands/Kconfig
> -source net/Kconfig
> -source drivers/Kconfig
> -source fs/Kconfig
> -source lib/Kconfig
> -source crypto/Kconfig
> diff --git a/arch/openrisc/Kconfig b/arch/openrisc/Kconfig
> index 2a8abf0ff8..32d23029d8 100644
> --- a/arch/openrisc/Kconfig
> +++ b/arch/openrisc/Kconfig
> @@ -27,11 +27,3 @@ config GENERIC
> select OPENRISC
>
> endchoice
> -
> -source common/Kconfig
> -source commands/Kconfig
> -source net/Kconfig
> -source drivers/Kconfig
> -source fs/Kconfig
> -source lib/Kconfig
> -source crypto/Kconfig
> diff --git a/arch/ppc/Kconfig b/arch/ppc/Kconfig
> index 97e6c00689..7a45ced7cd 100644
> --- a/arch/ppc/Kconfig
> +++ b/arch/ppc/Kconfig
> @@ -20,10 +20,3 @@ endchoice
>
> source arch/ppc/mach-mpc5xxx/Kconfig
> source arch/ppc/mach-mpc85xx/Kconfig
> -source common/Kconfig
> -source commands/Kconfig
> -source net/Kconfig
> -source drivers/Kconfig
> -source fs/Kconfig
> -source lib/Kconfig
> -source crypto/Kconfig
> diff --git a/arch/sandbox/Kconfig b/arch/sandbox/Kconfig
> index 3f1cefb837..5227cb624f 100644
> --- a/arch/sandbox/Kconfig
> +++ b/arch/sandbox/Kconfig
> @@ -15,11 +15,3 @@ config LINUX
>
> config ARCH_LINUX
> bool
> -
> -source common/Kconfig
> -source commands/Kconfig
> -source net/Kconfig
> -source drivers/Kconfig
> -source fs/Kconfig
> -source lib/Kconfig
> -source crypto/Kconfig
> diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
> index 52ccf4894f..3f91585d02 100644
> --- a/arch/x86/Kconfig
> +++ b/arch/x86/Kconfig
> @@ -97,11 +97,3 @@ endchoice
>
> source arch/x86/boot/Kconfig
> source arch/x86/mach-i386/Kconfig
> -
> -source common/Kconfig
> -source commands/Kconfig
> -source net/Kconfig
> -source drivers/Kconfig
> -source fs/Kconfig
> -source lib/Kconfig
> -source crypto/Kconfig
> --
> 2.20.0.rc1
>
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
prev parent reply other threads:[~2018-12-03 7:44 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-11-29 22:14 Antony Pavlov
2018-12-03 7:43 ` Sascha Hauer [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20181203074352.qosjci36mkn3m3cb@pengutronix.de \
--to=s.hauer@pengutronix.de \
--cc=antonynpavlov@gmail.com \
--cc=barebox@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox