2020-11-23 14:15:33 +00:00
|
|
|
#!/usr/bin/env perl
|
2018-02-13 21:15:35 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
#
|
MAINTAINERS & files: Canonize the e-mails I use at files
From now on, I'll start using my @kernel.org as my development e-mail.
As such, let's remove the entries that point to the old
mchehab@s-opensource.com at MAINTAINERS file.
For the files written with a copyright with mchehab@s-opensource,
let's keep Samsung on their names, using mchehab+samsung@kernel.org,
in order to keep pointing to my employer, with sponsors the work.
For the files written before I join Samsung (on July, 4 2013),
let's just use mchehab@kernel.org.
For bug reports, we can simply point to just kernel.org, as
this will reach my mchehab+samsung inbox anyway.
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Signed-off-by: Brian Warner <brian.warner@samsung.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
2018-04-25 09:34:48 +00:00
|
|
|
# Author: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
|
2018-02-13 21:15:35 +00:00
|
|
|
#
|
|
|
|
# Produce manpages from kernel-doc.
|
|
|
|
# See Documentation/doc-guide/kernel-doc.rst for instructions
|
|
|
|
|
|
|
|
if ($#ARGV < 0) {
|
|
|
|
die "where do I put the results?\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
mkdir $ARGV[0],0777;
|
|
|
|
$state = 0;
|
|
|
|
while (<STDIN>) {
|
|
|
|
if (/^\.TH \"[^\"]*\" 9 \"([^\"]*)\"/) {
|
|
|
|
if ($state == 1) { close OUT }
|
|
|
|
$state = 1;
|
|
|
|
$fn = "$ARGV[0]/$1.9";
|
|
|
|
print STDERR "Creating $fn\n";
|
|
|
|
open OUT, ">$fn" or die "can't open $fn: $!\n";
|
|
|
|
print OUT $_;
|
|
|
|
} elsif ($state != 0) {
|
|
|
|
print OUT $_;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
close OUT;
|