soft/kmod_scripts/sof_bootloop.sh

12 lines
178 B
Bash
Executable File

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