From bf884446f0421e1cfb352c5b3d2dc82f0547a213 Mon Sep 17 00:00:00 2001 From: John Klug Date: Thu, 31 Aug 2017 12:21:47 -0500 Subject: MTCAP LORA configuration table --- .../mlinux-scripts-1.1/mlinux-cell-radio-ready | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 recipes-core/mlinux-scripts/mlinux-scripts-1.1/mlinux-cell-radio-ready (limited to 'recipes-core/mlinux-scripts') diff --git a/recipes-core/mlinux-scripts/mlinux-scripts-1.1/mlinux-cell-radio-ready b/recipes-core/mlinux-scripts/mlinux-scripts-1.1/mlinux-cell-radio-ready new file mode 100644 index 0000000..9930425 --- /dev/null +++ b/recipes-core/mlinux-scripts/mlinux-scripts-1.1/mlinux-cell-radio-ready @@ -0,0 +1,29 @@ +#!/bin/sh + +COUNTER=0 +TIMEOUT=60 + +if [ $# -gt 1 ]; then + echo "usage: $0 [timeout]" + exit 1 +fi + +[ $# -eq 1 ] && TIMEOUT=$1 + +# Wait for the radio to be ready before continuing +while [ $COUNTER -lt $TIMEOUT ]; do + TYPE=$(radio-query --type) + MODEL=$(radio-query --model) + if [ $? == 0 ]; then + echo "Cellular radio is ready." + exit 0 + fi + let COUNTER=COUNTER+1 + + echo "Waiting for radio to come up in order to identify type ..." + + sleep 1 +done + +echo "Cellular radio is not ready." +exit 1 -- cgit v1.2.3