summaryrefslogtreecommitdiff
path: root/v4l/scripts/make_kconfig.pl
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@infradead.org>2006-04-26 19:27:34 -0300
committerMauro Carvalho Chehab <mchehab@infradead.org>2006-04-26 19:27:34 -0300
commit1c45b6c1b050a3aa3207fb61e6b7628db01e8b7c (patch)
tree8d93906946230e9b669eae5ec9be44e84fca9793 /v4l/scripts/make_kconfig.pl
parent50833699bf64e0d5966fb7fa4142fe7ee189fe8f (diff)
downloadmediapointer-dvb-s2-1c45b6c1b050a3aa3207fb61e6b7628db01e8b7c.tar.gz
mediapointer-dvb-s2-1c45b6c1b050a3aa3207fb61e6b7628db01e8b7c.tar.bz2
Some vars were not initializated by the script. fixed.
From: Mauro Carvalho Chehab <mchehab@infradead.org> This avoids warnings when running make *config Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'v4l/scripts/make_kconfig.pl')
-rwxr-xr-xv4l/scripts/make_kconfig.pl11
1 files changed, 7 insertions, 4 deletions
diff --git a/v4l/scripts/make_kconfig.pl b/v4l/scripts/make_kconfig.pl
index 11392c32d..1d1155af4 100755
--- a/v4l/scripts/make_kconfig.pl
+++ b/v4l/scripts/make_kconfig.pl
@@ -14,7 +14,7 @@ sub add_bool($)
my $arg=shift;
$tristate{$arg}="bool";
- printf "Boolean:%s\n",$arg;
+# printf "Boolean:%s\n",$arg;
}
sub add_tristate($)
@@ -22,7 +22,7 @@ sub add_tristate($)
my $arg=shift;
$tristate{$arg}="tristate";
- printf "Tristate:%s\n",$arg;
+# printf "Tristate:%s\n",$arg;
}
sub add_config($)
@@ -154,7 +154,6 @@ print OUT "mainmenu \"V4L/DVB menu\"\n";
print OUT "source Kconfig.kern\n";
open_kconfig ("../linux","../linux/drivers/media/Kconfig");
-
close OUT;
while ( my ($key, $value) = each(%config) ) {
@@ -173,10 +172,14 @@ close OUT;
if (($force_kconfig eq 1) || !open IN,".config") {
open OUT,">.config";
+ while ( my ($key, $value) = each(%depend) ) {
+ printf "CONFIG_%s=m\n",$key;
+ printf OUT "CONFIG_%s=m\n",$key;
+ }
while ( my ($key,$value) = each(%tristate) ) {
if ($key eq "DVB_AV7110_FIRMWARE") {
- printf OUT "CONFIG_%s=n\n",$key;
+# printf OUT "CONFIG_%s=n\n",$key;
} else {
if ($value eq "tristate") {
printf OUT "CONFIG_%s=m\n",$key;