Blame CommonInstall/comp_fm_prereq_RHEL73.pl.base

Packit 5ea288
#!/usr/bin/perl
Packit 5ea288
## BEGIN_ICS_COPYRIGHT8 ****************************************
Packit Service 6899a0
#
Packit Service 6899a0
# Copyright (c) 2015-2020, Intel Corporation
Packit Service 6899a0
#
Packit 5ea288
# Redistribution and use in source and binary forms, with or without
Packit 5ea288
# modification, are permitted provided that the following conditions are met:
Packit Service 6899a0
#
Packit 5ea288
#     * Redistributions of source code must retain the above copyright notice,
Packit 5ea288
#       this list of conditions and the following disclaimer.
Packit 5ea288
#     * Redistributions in binary form must reproduce the above copyright
Packit 5ea288
#       notice, this list of conditions and the following disclaimer in the
Packit 5ea288
#       documentation and/or other materials provided with the distribution.
Packit 5ea288
#     * Neither the name of Intel Corporation nor the names of its contributors
Packit 5ea288
#       may be used to endorse or promote products derived from this software
Packit 5ea288
#       without specific prior written permission.
Packit Service 6899a0
#
Packit 5ea288
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Packit 5ea288
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Packit 5ea288
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Packit 5ea288
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
Packit 5ea288
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Packit 5ea288
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Packit 5ea288
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Packit 5ea288
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Packit 5ea288
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Packit 5ea288
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Packit Service 6899a0
#
Packit 5ea288
## END_ICS_COPYRIGHT8   ****************************************
Packit 5ea288
#
Packit 5ea288
## [ICS VERSION STRING: unknown]
Packit 5ea288
#use strict;
Packit 5ea288
##use Term::ANSIColor;
Packit 5ea288
##use Term::ANSIColor qw(:constants);
Packit 5ea288
##use File::Basename;
Packit 5ea288
##use Math::BigInt;
Packit 5ea288
#
Packit 5ea288
## ==========================================================================
Packit 5ea288
#
Packit 5ea288
#Installation Prequisites array for opafm
Packit 5ea288
my @opafm_prereq = (
Packit 5ea288
                    "bash",
Packit 5ea288
                    "expat",
Packit 5ea288
                    "glibc",
Packit 5ea288
                    "libibmad",
Packit 5ea288
                    "libibumad",
Packit 5ea288
                    "libibverbs",
Packit 5ea288
		    "libhfi1",
Packit 5ea288
                    "openssl-libs",
Packit 5ea288
                    "rdma",
Packit 5ea288
                    "systemd",
Packit 5ea288
                    "zlib",
Packit 5ea288
);
Packit 5ea288
$comp_prereq_hash{'opafm_prereq'} = \@opafm_prereq;
Packit 5ea288