forked from ARM-software/lisa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtarget.config
More file actions
57 lines (48 loc) · 2.15 KB
/
target.config
File metadata and controls
57 lines (48 loc) · 2.15 KB
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
{
/* Platform */
/* - linux : accessed via SSH connection */
/* - android : accessed via ADB connection */
/* - host : run on the local host */
"platform" : "linux",
/* Board */
/* Currently supported boards are: */
/* juno : target is a JUNO board */
/* tc2 : target is a TC2 board */
/* Leave commented if your board is not listed above */
"board" : "juno",
/* Target IP or MAC address */
"host" : "192.168.0.20",
/* Login username (has to be sudo enabled) */
"username" : "root",
/* Login credentials */
/* You can specified either a password or keyfile */
"password" : "",
// "keyfile" : "/complete/path/of/your/keyfile",
/* RT-App Calibration */
/* Keep commented to do calibration at first run on a target. */
/* Then, replace the values with the ones reported for your */
/* specific target in the console logging messages */
// "rtapp-calib" : {
// "0": 354, "1": 138, "2": 138, "3": 363, "4": 355, "5": 357
// },
/* FTFP Image server */
/* This is the folder from where the target gets kernel/DTB */
/* images at each boot. */
/* The path of images to be deployed are specified by the */
/* experiments configuration (e.g. tests/eas/rfc_eas.json) */
"tftp" : {
"folder" : "/var/lib/tftpboot",
"kernel" : "kern.bin",
"dtb" : "dtb.bin"
},
/* Devlib modules to enabled for all the experiments */
"modules" : [ "bl" ],
/* Binary tools to install by default for all experiments */
"tools" : [],
/* List of test environment features to enable */
/* no-kernel : do not deploy kernel/dtb images */
/* no-reboot : do not force reboot the target at each */
/* configuration change */
/* debug : enable debugging messages */
"__features__" : "no-kernel no-reboot"
}