-
Notifications
You must be signed in to change notification settings - Fork 12
/
am-config.yaml
66 lines (54 loc) · 1.7 KB
/
am-config.yaml
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
formatVersion: 1
formatType: am-configuration
---
# basic AM functionality - the builtin apps are in 'apps'.
# installations will go into the standard /tmp/am hierarchy
applications:
builtinAppsManifestDir: "CenterConsole/apps"
installedAppsManifestDir: "/tmp/am/manifests"
appImageMountDir: "/tmp/am/image-mounts"
database: "/tmp/am/apps.db"
# QML apps will be able to import from modules...
runtimes:
qml:
importPaths: [ "imports/shared", "qml" ]
# ... as well as the SystemUI
ui:
fullscreen: yes
mainQml: "Main.qml"
importPaths: [ "imports/shared", "imports/system", "qml" ]
windowIcon: "imports/shared/assets/icons/active/[email protected]"
systemProperties:
public:
styleConfig: "auto"
showCluster: yes
private:
appStoreServerUrl: 'http://chaos.pelagicore.net:8080'
# development setup: no security
flags:
noSecurity: yes
noUiWatchdog: yes
# simulate an internal and a SD-card installation location
installationLocations:
- id: "internal-0"
installationPath: "/tmp/am/apps"
documentPath: "/tmp/am/docs"
mountPoint: "/tmp"
isDefault: true
# useful debug wrappers - mainly for Unix
# %program% and %arguments% are internal variables
debugWrappers:
- name: gdbserver
command: [ '/usr/bin/gdbserver', ':%port%', '%program%', '%arguments%' ]
parameters: # <name>: <default value>
port: 5555
supportedRuntimes: [ native, qml ]
supportedContainers: [ process ]
- name: valgrind
command: [ '/usr/bin/valgrind', '%program%', '%arguments%' ]
supportedRuntimes: [ native, qml ]
supportedContainers: [ process ]
- name: strace
command: [ '/usr/bin/strace', '%program%', '%arguments%' ]
supportedRuntimes: [ native, qml ]
supportedContainers: [ process ]