summaryrefslogtreecommitdiff
path: root/v4l/scripts/make_noconfig.pl
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@infradead.org>2006-04-25 18:20:44 -0300
committerMauro Carvalho Chehab <mchehab@infradead.org>2006-04-25 18:20:44 -0300
commit6a6a2d0070d94c04bdb2961a143fd516753464f0 (patch)
tree894c2298b435e80be1901f88f0c3a7f606480ab3 /v4l/scripts/make_noconfig.pl
parentd51c5dc0968d35384c2ee7960018457e81f72970 (diff)
downloadmediapointer-dvb-s2-6a6a2d0070d94c04bdb2961a143fd516753464f0.tar.gz
mediapointer-dvb-s2-6a6a2d0070d94c04bdb2961a143fd516753464f0.tar.bz2
Improves V4L/DVB in-tree building
From: Mauro Carvalho Chehab <mchehab@infradead.org> Now, make_kconfig.sh will check for boolean/tristate config vars and handle it properly. Also, make allyesconfig/allmodconfig will use make_kconfig.sh to generate .myconfig instead of conf -m. This way, make all will not require priviledges at kernel tree. write access to kernel tree is still required for make menuconfig/ make xconfig/make qconfig. Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'v4l/scripts/make_noconfig.pl')
-rwxr-xr-xv4l/scripts/make_noconfig.pl5
1 files changed, 0 insertions, 5 deletions
diff --git a/v4l/scripts/make_noconfig.pl b/v4l/scripts/make_noconfig.pl
index 94f80a954..503653a4f 100755
--- a/v4l/scripts/make_noconfig.pl
+++ b/v4l/scripts/make_noconfig.pl
@@ -55,11 +55,6 @@ close IN;
open OUT,">.myconfig";
while ( my ($key, $value) = each(%config) ) {
- if ($key ne CONFIG_DVB_AV7110_OSD &&
- $key ne CONFIG_DVB_AV7110_FIRMWARE &&
- $value eq "y") {
- $value="m";
- }
printf OUT "%-44s := %s\n",$key,$value;
}
close OUT;