blob: 6d0256dcfb5285559a00dbb9f2bf02f91beae317 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
#!/usr/bin/perl
# Copyright (C) 2006 Trent Piepho <xyzzy@speakeasy.org>
#
# Look for lines in C files like "#ifdef CONFIG_SOME_KCONF_VAR" and make
# sure CONFIG_SOME_KCONF_VAR is something that exists.
if($#ARGV < 0) {
print "Usage: $0 kernel_dir [files to check ...]\n\n";
print "If no files are listed, checks all files from hg manifest\n";
exit;
}
$kdir = shift;
if($#ARGV < 0) {
@ARGV = `hg manifest | cut "-d " -f3 | grep \\.[ch]\$`;
$? != 0 and die "Error getting manifest: $!";
chomp @ARGV;
}
sub readkconfig($$)
{
my $fn = "$_[0]/$_[1]";
# Don't read the same kconfig file more than once
return if exists $kconfigs{$fn};
$kconfigs{$fn} = 1;
# print "Reading $fn\n";
my $fh;
open $fh, '<', "$fn" or die "Can't read Kconfig file $fn: $!";
while(<$fh>) {
if (/^\s*source\s+"([^"]+)"\s*$/ || /^\s*source\s+(\S+)\s*$/) {
readkconfig($_[0], $1);
} elsif(/^config\s+(\w+)$/) {
$vars{"CONFIG_$1"}=1;
}
}
close $fh;
}
readkconfig('linux', 'drivers/media/Kconfig');
foreach(glob "$kdir/arch/*/Kconfig") {
s|^\Q$kdir/\E||;
next if(m|arch/um/Kconfig|);
readkconfig($kdir, $_);
}
while(<>) {
if(/^\s*#ifdef\s+(CONFIG_\w+)(_MODULE)?\W*$/) {
# print "Found $1\n";
print "Unknown config $1 in $ARGV:$.\n" unless(exists $vars{$1});
next;
}
if(/^\s*#if/) {
$_ .= <> while(/\\$/); # Handle line continuations
while(/defined\(\s*(CONFIG_\w+?)(_MODULE)?\s*\)/) {
print "Unknown config $1 in $ARGV:$.\n" unless(exists $vars{$1});
$_ = $';
}
}
} continue {
close ARGV if eof;
}
|