sof/tools/kmod_scripts/sof_bootloop.sh

14 lines
186 B
Bash
Executable File

#!/bin/bash
set -e
MAXLOOPS=100
COUNTER=0
while [ $COUNTER -lt $MAXLOOPS ]; do
echo "test $COUNTER"
./sof_bootone.sh
dmesg > boot_$COUNTER.bootlog
let COUNTER+=1
done