From: Vladimir Sokolovsky Date: Sun, 19 Oct 2008 08:55:24 +0000 (+0200) Subject: install.pl: Change status of nfsrdma to "technology preview". X-Git-Tag: vofed-1.4-rc4~9 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=ccb75f982d82b066775e35fafd64a689aa3556ee;p=~emulex%2Fofed_scripts%2F.git install.pl: Change status of nfsrdma to "technology preview". kernel modules in "technology preview" status can be installed by adding "module=y" to the ofed.conf file in unattended installation mode or by selecting the module in custom installation mode during interactive installation Signed-off-by: Vladimir Sokolovsky --- diff --git a/install.pl b/install.pl index e965719..c5e234b 100755 --- a/install.pl +++ b/install.pl @@ -281,7 +281,13 @@ my @suse_ofed_packages = ( # List of all available packages sorted following dependencies my @kernel_packages = ("kernel-ib", "kernel-ib-devel", "ib-bonding", "ib-bonding-debuginfo"); my @basic_kernel_modules = ("core", "mthca", "mlx4", "mlx4_en", "cxgb3", "nes", "ehca", "ipath", "ipoib"); -my @ulp_modules = ("sdp", "srp", "srpt", "rds", "qlgc_vnic", "iser", "nfsrdma"); +my @ulp_modules = ("sdp", "srp", "srpt", "rds", "qlgc_vnic", "iser"); + +# kernel modules in "technology preview" status can be installed by +# adding "module=y" to the ofed.conf file in unattended installation mode +# or by selecting the module in custom installation mode during interactive installation +my @tech_preview = ("nfsrdma"); + my @kernel_modules = (@basic_kernel_modules, @ulp_modules); my $kernel_configure_options; @@ -2061,7 +2067,7 @@ sub select_packages if ($package eq "kernel-ib") { # Select kernel modules to be installed - for my $module ( @kernel_modules ) { + for my $module ( @kernel_modules, @tech_preview ) { next if (not $kernel_modules_info{$module}{'available'}); if ($module eq "iser") { print "Install $module module? (open-iscsi will also be installed) [y/N]:"; @@ -2262,7 +2268,7 @@ sub select_packages } if (not $packages_info{$package}{'parent'}) { - my $modules = "@kernel_modules"; + my $modules = "@kernel_modules @tech_preview"; chomp $modules; $modules =~ s/ /|/g; if ($package =~ m/$modules/) {