Commit 4bf4e899 authored by Matthieu Cattin's avatar Matthieu Cattin

sh: Add eeprom validation test and pc shutdown dialog.

parent a2240a2b
...@@ -32,3 +32,15 @@ sudo sdb-read -e 0x200 eeprom_content.out calib > sdbfs/calib ...@@ -32,3 +32,15 @@ sudo sdb-read -e 0x200 eeprom_content.out calib > sdbfs/calib
# Re-write eeprom (new ipmi, saved calibration data) # Re-write eeprom (new ipmi, saved calibration data)
sudo ./test46.py sudo ./test46.py
# Check eeprom content validity
sudo ./test47.py
echo "--------------------------------------------------------------"
echo " "
echo -n "End of the test, do you want to switch the computer OFF? [y,n]"
read reply
if [ "$reply" = "y" ]
then
sudo shutdown -h now
fi
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment