Firmware here: http://lime-technology.com/forum/index.php?topic=12767.0
Flash like this: sasflash.exe -o -f 3081ETB3.fw -b mptsas.rom
More info on H310s http://www.vladan.fr/flash-dell-perc-h310-with-it-firmware/
Firmware here: http://lime-technology.com/forum/index.php?topic=12767.0
Flash like this: sasflash.exe -o -f 3081ETB3.fw -b mptsas.rom
More info on H310s http://www.vladan.fr/flash-dell-perc-h310-with-it-firmware/
#!/bin/sh
# Display drive bay for disks connected to SAS expander backplane
for name in /sys/block/* ; do
npath=$(readlink -f $name)
while [ $npath != "/" ] ; do
npath=$(dirname $npath)
ep=$(basename $npath)
if [ -e $npath/sas_device/$ep/bay_identifier ] ; then
bay=$(cat $npath/sas_device/$ep/bay_identifier)
encl=$(cat $npath/sas_device/$ep/enclosure_identifier)
echo "$name has BayID: $bay"
break
fi
done
done