Files
bootrr/helpers/bootrr-auto

12 lines
242 B
Plaintext
Raw Permalink Normal View History

#!/bin/sh
$(pwd)/helpers/bootrr-generic-tests
for TEST in $(tr "\0" "\n" < /proc/device-tree/compatible); do
if [ -x "/usr/bin/${TEST}" ]; then
/usr/bin/${TEST}
elif [ -x "$(pwd)/boards/${TEST}" ]; then
$(pwd)/boards/${TEST}
fi
done