From: Vladimir Sokolovsky Date: Mon, 2 Jul 2012 08:17:53 +0000 (+0300) Subject: install.pl: Extend the range of supported kernels up to 3.5 X-Git-Tag: vofed-3.5~11 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=f267b75ef5d04d38ce711b0258632115dffcad79;p=~emulex%2Fofed_scripts%2F.git install.pl: Extend the range of supported kernels up to 3.5 Signed-off-by: Vladimir Sokolovsky --- diff --git a/install.pl b/install.pl index 8121272..00555ba 100755 --- a/install.pl +++ b/install.pl @@ -2666,7 +2666,7 @@ sub check_linux_dependencies if ($package =~ /compat-rdma|ib-bonding/) { if (not $packages_info{$package}{'rpm_exist'}) { # Check that required kernel is supported - if ($kernel !~ /2.6.16.60-[A-Za-z0-9.]*-[A-Za-z0-9.]*|2.6.1[8-9]|2.6.2[0-9]|2.6.3[0-9]|2.6.40|3.[0-1]/) { + if ($kernel !~ /2.6.16.60-[A-Za-z0-9.]*-[A-Za-z0-9.]*|2.6.1[8-9]|2.6.2[0-9]|2.6.3[0-9]|2.6.40|3.[0-5]/) { print RED "Kernel $kernel is not supported.", RESET "\n"; print BLUE "For the list of Supported Platforms and Operating Systems see", RESET "\n"; print BLUE "$CWD/docs/OFED_release_notes.txt", RESET "\n";