Files
bootrr/bin/bootrr.in

14 lines
241 B
Plaintext
Raw Permalink Normal View History

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