summaryrefslogtreecommitdiff
path: root/v4l/scripts/make_kconfig.pl
diff options
context:
space:
mode:
Diffstat (limited to 'v4l/scripts/make_kconfig.pl')
-rwxr-xr-xv4l/scripts/make_kconfig.pl14
1 files changed, 14 insertions, 0 deletions
diff --git a/v4l/scripts/make_kconfig.pl b/v4l/scripts/make_kconfig.pl
index 5f8866220..807fea2e6 100755
--- a/v4l/scripts/make_kconfig.pl
+++ b/v4l/scripts/make_kconfig.pl
@@ -400,6 +400,20 @@ close OUT;
disable_config('DVB_AV7110_FIRMWARE');
disable_config('DVB_CINERGYT2_TUNING');
+# Hack for check sound/oss/aci.h header
+
+my $mirodep="$kernel/sound/oss/aci.h";
+if (!open IN, $mirodep) {
+ my $key="RADIO_MIROPCM20";
+ printf "$key: $mirodep is missing.\n";
+ printf "It seems that you are using a kernel-headers only package\n";
+ printf "kernel-headers only won't provide you make menuconfig/xconfig/qconfig\n";
+
+ $kernopts{$key}='n';
+}
+close IN;
+
+# Recursively check for broken dependencies
my $i;
do {
$i=0;