mirror of
https://github.com/linux-msm/bootrr.git
synced 2026-02-25 13:12:03 -08:00
14 lines
241 B
Plaintext
14 lines
241 B
Plaintext
|
|
#!/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
|