summaryrefslogtreecommitdiff
path: root/v4l/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'v4l/scripts')
-rwxr-xr-xv4l/scripts/make_noconfig.pl3
1 files changed, 3 insertions, 0 deletions
diff --git a/v4l/scripts/make_noconfig.pl b/v4l/scripts/make_noconfig.pl
index 503653a4f..a47ca4acf 100755
--- a/v4l/scripts/make_noconfig.pl
+++ b/v4l/scripts/make_noconfig.pl
@@ -55,6 +55,9 @@ close IN;
open OUT,">.myconfig";
while ( my ($key, $value) = each(%config) ) {
+ if ($value eq "y") {
+ $value="m";
+ }
printf OUT "%-44s := %s\n",$key,$value;
}
close OUT;