Skip to content

Commit

Permalink
Update to latest from build 10.10.3.2.2 (IFS 10.10.3.2.2)
Browse files Browse the repository at this point in the history
  • Loading branch information
scottbreyer-cornelisnetworks committed Feb 1, 2021
1 parent 24a3b31 commit ef467ad
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 7 deletions.
6 changes: 3 additions & 3 deletions CommonInstall/comp_delta.pl
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ ($)
@delta_kernel_srpms = ( @delta_kernel_srpms_rhel81 );
} elsif ( "$CUR_VENDOR_VER" eq "ES8" ) {
@delta_kernel_srpms = ( @delta_kernel_srpms_rhel8 );
} elsif ( "$CUR_VENDOR_VER" eq "ES78" ) {
} elsif ( "$CUR_VENDOR_VER" eq "ES78" || "$CUR_VENDOR_VER" eq "ES79" ) {
@delta_kernel_srpms = ( @delta_kernel_srpms_rhel78 );
} elsif ( "$CUR_VENDOR_VER" eq "ES77" ) {
@delta_kernel_srpms = ( @delta_kernel_srpms_rhel77 );
Expand Down Expand Up @@ -815,7 +815,7 @@ ()
} elsif ( "$CUR_VENDOR_VER" eq "ES8" ) {
return ( has_version_delta()
&& rpm_is_installed("kmod-ifs-kernel-updates", $CUR_OS_VER));
} elsif ( "$CUR_VENDOR_VER" eq "ES78" ) {
} elsif ( "$CUR_VENDOR_VER" eq "ES78" || "$CUR_VENDOR_VER" eq "ES79" ) {
return ( has_version_delta()
&& rpm_is_installed("kmod-ifs-kernel-updates", $CUR_OS_VER));
} elsif ( "$CUR_VENDOR_VER" eq "ES77" ) {
Expand Down Expand Up @@ -1139,7 +1139,7 @@ ()
} elsif ( "$CUR_VENDOR_VER" eq "ES77" ) {
return (has_version_delta()
&& rpm_is_installed("kmod-ifs-kernel-updates", $CUR_OS_VER));
} elsif ( "$CUR_VENDOR_VER" eq "ES78" ) {
} elsif ( "$CUR_VENDOR_VER" eq "ES78" || "$CUR_VENDOR_VER" eq "ES79" ) {
return (has_version_delta()
&& rpm_is_installed("kmod-ifs-kernel-updates", $CUR_OS_VER));
} elsif ( "$CUR_VENDOR_VER" eq "ES8" ) {
Expand Down
2 changes: 1 addition & 1 deletion CommonInstall/main_omnipathwrap_delta.pl
Original file line number Diff line number Diff line change
Expand Up @@ -1280,7 +1280,7 @@ sub init_components
%opa_stack_dev_comp_info,
%opa_stack_rhel_comp_info,
);
} elsif ( "$CUR_VENDOR_VER" eq "ES78" ) {
} elsif ( "$CUR_VENDOR_VER" eq "ES78" || "$CUR_VENDOR_VER" eq "ES79" ) {
@Components = ( @Components_rhel78 );
@SubComponents = ( @SubComponents_newer );
%ComponentInfo = ( %ComponentInfo, %ibacm_comp_info,
Expand Down
2 changes: 1 addition & 1 deletion CommonInstall/overrides_delta.pl
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ ()
@Components = ( @delta_Components_rhel76 );
} elsif ( "$CUR_VENDOR_VER" eq "ES77" ) {
@Components = ( @delta_Components_rhel77 );
} elsif ( "$CUR_VENDOR_VER" eq "ES78" ) {
} elsif ( "$CUR_VENDOR_VER" eq "ES78" || "$CUR_VENDOR_VER" eq "ES79" ) {
@Components = ( @delta_Components_rhel78 );
} elsif ( "$CUR_VENDOR_VER" eq "ES8" ) {
@Components = ( @delta_Components_rhel8 );
Expand Down
5 changes: 5 additions & 0 deletions CommonInstall/util_init.pl
Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,11 @@ sub verify_distrib_files
Abort "Please contact your support representative...\n";
}

# Make ES79 look like ES78 for installation
if ( "$CUR_VENDOR_VER" eq "ES79" ) {
$CUR_VENDOR_VER="ES78";
}

my $archname;
my $supported_archname;
if ( "$supported_arch" ne "$ARCH"
Expand Down
2 changes: 1 addition & 1 deletion OpenIb_Host/build.env
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Adjust the environment variables if necessary
export PRODUCT=OPENIB_FF
export RELEASE_TAG=10_10_3_0_11
export RELEASE_TAG=10_10_3_2_2
export BUILD_CONFIG=${BUILD_CONFIG:-"release"}
export BUILD_WITH_STACK=OPENIB
export LDENVFS=
2 changes: 1 addition & 1 deletion OpenIb_Host/build_label
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Build of OPENIB_FF 06/30/20 23:46 Tag: OPENIB_FF_LINUX_opa-10_10_10_10_3_0_11
Build of OPENIB_FF 11/20/20 00:36 Tag: OPENIB_FF_LINUX_opa-10_10_10_10_3_2_2

0 comments on commit ef467ad

Please sign in to comment.