d16_coreboot-libre_4.11.log: add a log got with these tools

This commit is contained in:
Adrien Bourmault 2024-08-28 17:16:02 +02:00
parent d33dd77b57
commit bf26547b7b
Signed by: neox
GPG Key ID: 57BC26A3687116F6
4 changed files with 4230 additions and 9 deletions

View File

@ -107,12 +107,8 @@ else
exit 0
fi
wait_for $buffer 'link becomes ready'
echo Network ready
wait_for $buffer 'tty'
wait_for $buffer 'login:'
echo Login should be ready
echo Shutting down
shutdown
echo Successful power cycle!

4225
d16_coreboot-libre_4.11.log Normal file

File diff suppressed because one or more lines are too long

View File

@ -66,7 +66,7 @@ check_logs_still_on()
find_in_logs()
{
keyword=$1
keyword=$@
while IFS= read -r line
do
echo "$line" | grep "$keyword" &> /dev/null
@ -92,7 +92,7 @@ find_print_and_do()
wait_for()
{
tail -F ${1} | find_in_logs ${2}
tail -F ${1} | find_in_logs $@
}
react_to_info()

View File

@ -21,10 +21,10 @@
ssh_bmc()
{
sshpass -p '0penBmc' ssh root@ppalsoc08-bmc ${@}
sshpass -p '0penBmc' ssh root@ppalsoc08-bmc.lip6.fr ${@}
}
ssh_hst()
{
sshpass -p 'password' ssh neox@ppalsoc08 ${@}
sshpass -p 'password' ssh neox@ppalsoc08.lip6.fr ${@}
}