add freeipmi source

This commit is contained in:
dmacias72
2016-03-24 14:02:30 -06:00
parent 46d0c3615e
commit bc10199d49
398 changed files with 89602 additions and 0 deletions

View File

@ -0,0 +1,15 @@
#!/bin/sh
options="--category=core"
while test $# != 0
do
case "$1" in
*)
options="$options $1"
;;
esac
shift
done
exec /usr/sbin/ipmi-config $options

Binary file not shown.

BIN
source/freeipmi/usr/sbin/bmc-info Executable file

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,15 @@
#!/bin/sh
options="--category=chassis"
while test $# != 0
do
case "$1" in
*)
options="$options $1"
;;
esac
shift
done
exec /usr/sbin/ipmi-config $options

Binary file not shown.

Binary file not shown.

BIN
source/freeipmi/usr/sbin/ipmi-fru Executable file

Binary file not shown.

Binary file not shown.

BIN
source/freeipmi/usr/sbin/ipmi-oem Executable file

Binary file not shown.

View File

@ -0,0 +1,15 @@
#!/bin/sh
options="--category=pef"
while test $# != 0
do
case "$1" in
*)
options="$options $1"
;;
esac
shift
done
exec /usr/sbin/ipmi-config $options

BIN
source/freeipmi/usr/sbin/ipmi-pet Executable file

Binary file not shown.

BIN
source/freeipmi/usr/sbin/ipmi-raw Executable file

Binary file not shown.

BIN
source/freeipmi/usr/sbin/ipmi-sel Executable file

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,15 @@
#!/bin/sh
options="--category=sensors"
while test $# != 0
do
case "$1" in
*)
options="$options $1"
;;
esac
shift
done
exec /usr/sbin/ipmi-config $options

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,26 @@
#!/bin/sh
options="--output-sensor-state"
verboseset=0
while test $# != 0
do
case "$1" in
--legacy-output)
options="$options --ipmimonitoring-legacy-output"
;;
-v)
verboseset=1
;;
*)
options="$options $1"
;;
esac
shift
done
if [ "$verboseset" = "0" ]; then
options="$options --ignore-not-available-sensors"
fi
exec /usr/sbin/ipmi-sensors $options

BIN
source/freeipmi/usr/sbin/ipmiping Executable file

Binary file not shown.

Binary file not shown.

BIN
source/freeipmi/usr/sbin/ipmiseld Executable file

Binary file not shown.

BIN
source/freeipmi/usr/sbin/rmcpping Executable file

Binary file not shown.