From 9c734a2476220e6e90056a9f463d7d6e8a04ac3a Mon Sep 17 00:00:00 2001 From: John Klug Date: Tue, 15 Jan 2019 16:52:18 -0600 Subject: Set /dev/gps0, even if gps capability flag is false. --- recipes-bsp/multitech/mts-io/mts-io.init | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'recipes-bsp/multitech') diff --git a/recipes-bsp/multitech/mts-io/mts-io.init b/recipes-bsp/multitech/mts-io/mts-io.init index b7fda14..705f84d 100644 --- a/recipes-bsp/multitech/mts-io/mts-io.init +++ b/recipes-bsp/multitech/mts-io/mts-io.init @@ -215,10 +215,11 @@ mfser_init() { set_gpslink() { gpscap=$(cat ${sysdir}/capability/gps) - if ((gpscap == 0)) ; then + # For all hardware except MTCDTIPHP, the gpscapability + # flag indicates whether or not we have a GPS. + if ! [[ ${hw_name} =~ ^MTCDTIPHP$ ]] && ((gpscap == 0)) ; then return fi - if [[ ${hw} == MTRV1-0.2 ]] ; then ln -sf /dev/ttyXRUSB0 /dev/gps0 return -- cgit v1.2.3