* [PATCH] localmodconfig: Use Kbuild files too
@ 2015-07-26 22:06 Richard Weinberger
2015-08-08 12:47 ` Richard Weinberger
0 siblings, 1 reply; 3+ messages in thread
From: Richard Weinberger @ 2015-07-26 22:06 UTC (permalink / raw)
To: yann.morin.1998
Cc: rostedt, artafinde, linux-kbuild, linux-kernel,
Richard Weinberger
In kbuild it is allowed to define objects in files named "Makefile"
and "Kbuild".
Currently localmodconfig reads objects only from "Makefile"s and misses
modules like nouveau.
Reported-and-tested-by: Leonidas Spyropoulos <artafinde@gmail.com>
Signed-off-by: Richard Weinberger <richard@nod.at>
---
scripts/kconfig/streamline_config.pl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/kconfig/streamline_config.pl b/scripts/kconfig/streamline_config.pl
index 9cb8522..f3d3fb4 100755
--- a/scripts/kconfig/streamline_config.pl
+++ b/scripts/kconfig/streamline_config.pl
@@ -137,7 +137,7 @@ my $ksource = ($ARGV[0] ? $ARGV[0] : '.');
my $kconfig = $ARGV[1];
my $lsmod_file = $ENV{'LSMOD'};
-my @makefiles = `find $ksource -name Makefile 2>/dev/null`;
+my @makefiles = `find $ksource -name Makefile -or -name Kbuild 2>/dev/null`;
chomp @makefiles;
my %depends;
--
2.4.6
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] localmodconfig: Use Kbuild files too
2015-07-26 22:06 [PATCH] localmodconfig: Use Kbuild files too Richard Weinberger
@ 2015-08-08 12:47 ` Richard Weinberger
2015-08-10 14:58 ` Steven Rostedt
0 siblings, 1 reply; 3+ messages in thread
From: Richard Weinberger @ 2015-08-08 12:47 UTC (permalink / raw)
To: Richard Weinberger
Cc: yann.morin.1998, Steven Rostedt, artafinde, linux-kbuild, LKML
On Mon, Jul 27, 2015 at 12:06 AM, Richard Weinberger <richard@nod.at> wrote:
> In kbuild it is allowed to define objects in files named "Makefile"
> and "Kbuild".
> Currently localmodconfig reads objects only from "Makefile"s and misses
> modules like nouveau.
>
> Reported-and-tested-by: Leonidas Spyropoulos <artafinde@gmail.com>
> Signed-off-by: Richard Weinberger <richard@nod.at>
> ---
> scripts/kconfig/streamline_config.pl | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/scripts/kconfig/streamline_config.pl b/scripts/kconfig/streamline_config.pl
> index 9cb8522..f3d3fb4 100755
> --- a/scripts/kconfig/streamline_config.pl
> +++ b/scripts/kconfig/streamline_config.pl
> @@ -137,7 +137,7 @@ my $ksource = ($ARGV[0] ? $ARGV[0] : '.');
> my $kconfig = $ARGV[1];
> my $lsmod_file = $ENV{'LSMOD'};
>
> -my @makefiles = `find $ksource -name Makefile 2>/dev/null`;
> +my @makefiles = `find $ksource -name Makefile -or -name Kbuild 2>/dev/null`;
> chomp @makefiles;
>
> my %depends;
> --
Ping?
--
Thanks,
//richard
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] localmodconfig: Use Kbuild files too
2015-08-08 12:47 ` Richard Weinberger
@ 2015-08-10 14:58 ` Steven Rostedt
0 siblings, 0 replies; 3+ messages in thread
From: Steven Rostedt @ 2015-08-10 14:58 UTC (permalink / raw)
To: Richard Weinberger
Cc: Richard Weinberger, yann.morin.1998, artafinde, linux-kbuild,
LKML
On Sat, 8 Aug 2015 14:47:32 +0200
Richard Weinberger <richard.weinberger@gmail.com> wrote:
> On Mon, Jul 27, 2015 at 12:06 AM, Richard Weinberger <richard@nod.at> wrote:
> > In kbuild it is allowed to define objects in files named "Makefile"
> > and "Kbuild".
> > Currently localmodconfig reads objects only from "Makefile"s and misses
> > modules like nouveau.
> >
> > Reported-and-tested-by: Leonidas Spyropoulos <artafinde@gmail.com>
> > Signed-off-by: Richard Weinberger <richard@nod.at>
> > ---
> > scripts/kconfig/streamline_config.pl | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/scripts/kconfig/streamline_config.pl b/scripts/kconfig/streamline_config.pl
> > index 9cb8522..f3d3fb4 100755
> > --- a/scripts/kconfig/streamline_config.pl
> > +++ b/scripts/kconfig/streamline_config.pl
> > @@ -137,7 +137,7 @@ my $ksource = ($ARGV[0] ? $ARGV[0] : '.');
> > my $kconfig = $ARGV[1];
> > my $lsmod_file = $ENV{'LSMOD'};
> >
> > -my @makefiles = `find $ksource -name Makefile 2>/dev/null`;
> > +my @makefiles = `find $ksource -name Makefile -or -name Kbuild 2>/dev/null`;
> > chomp @makefiles;
> >
> > my %depends;
> > --
>
> Ping?
>
Thanks, I'll take a look at this today.
-- Steve
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-08-10 15:06 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-26 22:06 [PATCH] localmodconfig: Use Kbuild files too Richard Weinberger
2015-08-08 12:47 ` Richard Weinberger
2015-08-10 14:58 ` Steven Rostedt
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox