From 2a16dee518f648cae31111bfe6968daa61065544 Mon Sep 17 00:00:00 2001 From: Jesse Gilles Date: Fri, 28 Feb 2014 15:51:45 -0600 Subject: mts-io: power on radio on boot for mtocgd, add comments to radio-reset-h5 --- .../recipes/multitech/mts-io/mtocgd/mts-io.init | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 multitech/recipes/multitech/mts-io/mtocgd/mts-io.init (limited to 'multitech/recipes/multitech/mts-io/mtocgd/mts-io.init') diff --git a/multitech/recipes/multitech/mts-io/mtocgd/mts-io.init b/multitech/recipes/multitech/mts-io/mtocgd/mts-io.init new file mode 100644 index 0000000..fe6c517 --- /dev/null +++ b/multitech/recipes/multitech/mts-io/mtocgd/mts-io.init @@ -0,0 +1,26 @@ +#!/bin/sh + +case $1 in + start) + echo "Loading mts-io module" + modprobe mts_io + radio_power=`mts-io-sysfs show radio-power` + # power on cellular radio if needed + if [ "$radio_power" = "0" ]; then + echo "Powering on radio" + mts-io-sysfs store radio-power 1 & + fi + ;; + + stop) + echo "Unloading mts-io module" + modprobe -r mts_io + ;; + + *) + echo "Usage: $0 {start|stop}" + exit 2 + ;; +esac + + -- cgit v1.2.3