Re: [PATCH] get_maintainer.pl: add .get_maintainer.conf

2021-11-12 Thread Tom Rini
On Sun, Oct 31, 2021 at 11:38:12PM +0100, Michael Walle wrote:

> Since commit e57c7c5c4282 ("get_maintainer.pl: update from Linux kernel
> v5.13-rc6") only the top level MAINTAINERS file is used. This is because
> this commit (accidentally) disabled the search of MAINTAINERS files
> (find_maintainer_files is set to 0 again). Before that, commit
> b79372ae94fb ("scripts/get_maintainer.pl: enable find_maintainer_files")
> explicitly enabled that feature. Nowadays, we also have to set
> maintainer_path to a directory.
> 
> To fix it and enable recursive search of MAINTAINERS, create a
> configuration file to set these two variables.
> 
> Signed-off-by: Michael Walle 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: PGP signature


[PATCH] get_maintainer.pl: add .get_maintainer.conf

2021-10-31 Thread Michael Walle
Since commit e57c7c5c4282 ("get_maintainer.pl: update from Linux kernel
v5.13-rc6") only the top level MAINTAINERS file is used. This is because
this commit (accidentally) disabled the search of MAINTAINERS files
(find_maintainer_files is set to 0 again). Before that, commit
b79372ae94fb ("scripts/get_maintainer.pl: enable find_maintainer_files")
explicitly enabled that feature. Nowadays, we also have to set
maintainer_path to a directory.

To fix it and enable recursive search of MAINTAINERS, create a
configuration file to set these two variables.

Signed-off-by: Michael Walle 
---
 .get_maintainer.conf | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 .get_maintainer.conf

diff --git a/.get_maintainer.conf b/.get_maintainer.conf
new file mode 100644
index 00..df595f5420
--- /dev/null
+++ b/.get_maintainer.conf
@@ -0,0 +1 @@
+--find-maintainer-files --maintainer-path=.
-- 
2.30.2