#!/bin/sh

if [ "$1" = "stop" -o $1 = "restart" ]
then
	killall navd
	killall uim
	rmmod gps_drv
fi

if [ "$1" = "start" -o $1 = "restart" ]	
then
	modprobe gps_drv
	/home/root/wl12xx/uim &
	navd --android_log NAVD  -p3 -nav\"-c/system/etc/gps/config/pathconfigfile.txt\" &
fi
