diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2007-05-29 12:14:59 +0200 |
---|---|---|
committer | Hans Verkuil <hverkuil@xs4all.nl> | 2007-05-29 12:14:59 +0200 |
commit | 6a60b7c1f736f406059a8e5ae1afdedc6a2101db (patch) | |
tree | 9fee6beb1d507533c580fc6ed74da309f7421921 /v4l/scripts | |
parent | 8d9359376069ed515be1e3ec1afa1f73de1bfa3b (diff) | |
download | mediapointer-dvb-s2-6a60b7c1f736f406059a8e5ae1afdedc6a2101db.tar.gz mediapointer-dvb-s2-6a60b7c1f736f406059a8e5ae1afdedc6a2101db.tar.bz2 |
Merge from master
From: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Diffstat (limited to 'v4l/scripts')
-rwxr-xr-x | v4l/scripts/make_kconfig.pl | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/v4l/scripts/make_kconfig.pl b/v4l/scripts/make_kconfig.pl index d558aaeb6..7cb258d86 100755 --- a/v4l/scripts/make_kconfig.pl +++ b/v4l/scripts/make_kconfig.pl @@ -475,6 +475,10 @@ sub cmp_ver($$) return $v1_sublevel <=> $v2_sublevel; } +# Get kernel version +get_version(); +print "Preparing to compile for kernel version $kernver\n"; + # Get Kernel's config settings %kernopts = process_config("$kernel/.config"); @@ -492,14 +496,14 @@ EOF exit -1; } +# Kernel < 2.6.22 is missing the HAS_IOMEM option +if (!defined $kernopts{HAS_IOMEM} && cmp_ver($kernver, '2.6.22') < 0) { + $kernopts{HAS_IOMEM} = 2; +} + # Get minimum kernel version for our variables parse_versions(); -# Get kernel version -get_version(); - -print "Preparing to compile for kernel version $kernver\n"; - kernelcheck(); open OUT, ">Kconfig" or die "Cannot write Kconfig file"; |