1
0
mirror of https://github.com/kepler155c/opus synced 2025-11-02 00:23:00 +00:00

transition to kernel

This commit is contained in:
kepler155c@gmail.com
2018-01-21 05:44:13 -05:00
parent 1c1eb9b782
commit e59400eb2b
16 changed files with 87 additions and 72 deletions

14
sys/autorun/gpshost.lua Normal file
View File

@@ -0,0 +1,14 @@
if _G.device.wireless_modem then
_G.requireInjector()
local Config = require('config')
local config = { }
Config.load('gps', config)
if config.host and type(config.host) == 'table' then
_ENV._APP_TITLE = 'GPS Daemon'
os.run(_ENV, '/rom/programs/gps', 'host', config.host.x, config.host.y, config.host.z)
print('GPS daemon stopped')
end
end