diff options
Diffstat (limited to 'v4l/scripts/make_kconfig.pl')
-rwxr-xr-x | v4l/scripts/make_kconfig.pl | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/v4l/scripts/make_kconfig.pl b/v4l/scripts/make_kconfig.pl index feef72c92..d5b34b36c 100755 --- a/v4l/scripts/make_kconfig.pl +++ b/v4l/scripts/make_kconfig.pl @@ -22,14 +22,14 @@ use FileHandle; sub process_config ($) { my $filename = shift; - my $in = new FileHandle; + my $in = new FileHandle; open $in,"$kernel/include/$filename" or die "File not found: $kernel/include/$filename"; while (<$in>) { - if (m|\#include\s+\<(.*)\>|) { + if (m|\#include\s+\<(.*)\>|) { process_config ($1); next; - } + } if (m/\#define\s+CONFIG_([^ ]*)_ON_SMP\s+(.*)\n/) { my $key=$1; my $value=$2; @@ -265,7 +265,7 @@ sub open_kconfig($$) { # we need to make sure we've disabled it, and add a bit # to the help text if (m|^\s*(---)?help(---)?\s*$| && $disabled) { - if(exists $tristate{$key} && !$default_seen) { + if(exists $tristate{$key} && !$default_seen) { print OUT "\tdefault n\n"; } print OUT <<"EOF"; @@ -358,10 +358,10 @@ config VIDEO_KERNEL_VERSION ---help--- Normally drivers that require a kernel newer $version.$level.$sublevel, the kernel you are compiling for now, will be disabled. - + Turning this switch on will let you enabled them, but be warned - they may not work properly or even compile. - + they may not work properly or even compile. + They may also work fine, and the only reason they are listed as requiring a newer kernel is that no one has tested them with an older one yet. @@ -409,11 +409,11 @@ print <<"EOF2"; $key: $mirodep is missing. ***WARNING:*** You do not have the full kernel sources installed. -This does not prevent you from building the v4l-dvb tree if you have the -kernel headers, but the full kernel source is required in order to use +This does not prevent you from building the v4l-dvb tree if you have the +kernel headers, but the full kernel source is required in order to use make menuconfig / xconfig / qconfig. -If you are experiencing problems building the v4l-dvb tree, please try +If you are experiencing problems building the v4l-dvb tree, please try building against a vanilla kernel before reporting a bug. Vanilla kernels are available at http://kernel.org. |