-
Notifications
You must be signed in to change notification settings - Fork 118
/
default.sdef
79 lines (68 loc) · 2.22 KB
/
default.sdef
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
//--------------------------------------------------------------------------------------------------
// Sample system definition that includes essential modem and positioning services.
//
// Copyright (C) Sierra Wireless Inc.
//--------------------------------------------------------------------------------------------------
#include "$LEGATO_ROOT/legatoTargetConfig.sinc"
#include "$LEGATO_ROOT/apps/platformServices/defaultAirVantage.sinc"
#include "$LEGATO_ROOT/apps/platformServices/defaultAtCommands.sinc"
#if ${LEGATO_EXTRA_SINC} = ""
#else
#include "$LEGATO_EXTRA_SINC"
#endif
#if ${LE_CONFIG_ENABLE_WIFI} = y
#include "$LEGATO_ROOT/modules/WiFi/wifi.sinc"
#endif
apps:
{
// Platform services.
$LEGATO_ROOT/apps/platformServices/audioService
$LEGATO_ROOT/apps/platformServices/cellNetService
$LEGATO_ROOT/apps/platformServices/dataConnectionService
$LEGATO_ROOT/apps/platformServices/fwupdateService
$LEGATO_ROOT/apps/platformServices/modemService
$LEGATO_ROOT/apps/platformServices/positioningService
$LEGATO_ROOT/apps/platformServices/powerMgr
$LEGATO_ROOT/apps/platformServices/secStore
$LEGATO_ROOT/apps/platformServices/smsInboxService
$LEGATO_ROOT/apps/platformServices/voiceCallService
$LEGATO_ROOT/apps/platformServices/gpioService
$LEGATO_ROOT/apps/platformServices/atService
$LEGATO_ROOT/apps/platformServices/spiService
$LEGATO_ROOT/apps/platformServices/portService
// Command-line tools.
$LEGATO_ROOT/apps/tools/tools
#if ${LE_CONFIG_RPC} = y
$LEGATO_ROOT/framework/daemons/rpcProxy/rpcProxy
#endif
}
#if ${LE_CONFIG_FEATURE_SPISVC} = y
kernelModules:
{
$LEGATO_ROOT/drivers/spisvc/spisvc.mdef
}
#endif
commands:
{
cm = tools:/scripts/cm
fwupdate = tools:/bin/fwupdate
secstore = tools:/bin/secstore
pmtool = tools:/bin/pmtool
gnss = tools:/bin/gnss
uartMode = tools:/bin/uartMode
kmod = tools:/bin/kmod
#if ${LE_CONFIG_RPC} = y
rpctool = tools:/bin/rpcTool
#endif
}
bindings:
{
<root>.le_fwupdate -> fwupdateService.le_fwupdate
}
interfaceSearch:
{
$LEGATO_ROOT/interfaces/modemServices
$LEGATO_ROOT/interfaces/positioning
$LEGATO_ROOT/interfaces/atServices
}
#include "$LEGATO_ROOT/apps/tools/devMode.sinc"