diff options
author | John Klug <john.klug@multitech.com> | 2017-08-31 17:09:38 -0500 |
---|---|---|
committer | John Klug <john.klug@multitech.com> | 2017-09-14 17:35:02 -0500 |
commit | 40b970420674bc7ce9d347f258b93c59f9f0272d (patch) | |
tree | b7af8b3042072b556c56d6c2f7200e16629a0cfd /recipes-core/mlinux-scripts | |
parent | 4c71e7f725e5cab0404a20a63fe699a9f3726b94 (diff) | |
download | meta-mlinux-40b970420674bc7ce9d347f258b93c59f9f0272d.tar.gz meta-mlinux-40b970420674bc7ce9d347f258b93c59f9f0272d.tar.bz2 meta-mlinux-40b970420674bc7ce9d347f258b93c59f9f0272d.zip |
Allow the timeout in the environment.
Diffstat (limited to 'recipes-core/mlinux-scripts')
-rw-r--r-- | recipes-core/mlinux-scripts/mlinux-scripts-1.1/mlinux-cell-radio-ready | 7 |
1 files changed, 6 insertions, 1 deletions
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 index 9930425..42c5cdc 100644 --- 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 @@ -1,7 +1,9 @@ #!/bin/sh +# The timeout can be set in the environment or the +# first parameter. + COUNTER=0 -TIMEOUT=60 if [ $# -gt 1 ]; then echo "usage: $0 [timeout]" @@ -10,6 +12,9 @@ fi [ $# -eq 1 ] && TIMEOUT=$1 +# Set the default TIMEOUT +: ${TIMEOUT:=60} + # Wait for the radio to be ready before continuing while [ $COUNTER -lt $TIMEOUT ]; do TYPE=$(radio-query --type) |