blob: 06d3fbf5620dd9c5dea2754ddb7f572215cdcd6a [file] [log] [blame]
Patrick Bellasi0f8ac682015-10-12 11:29:40 +01001{
Patrick Bellasi83aaf5c2016-01-22 10:57:22 +00002 /* Platform */
3 /* - linux : accessed via SSH connection */
4 /* - android : accessed via ADB connection */
5 /* - host : run on the local host */
6 "platform" : "linux",
Patrick Bellasi0f8ac682015-10-12 11:29:40 +01007
Patrick Bellasi83aaf5c2016-01-22 10:57:22 +00008 /* Board */
9 /* Currently supported boards are: */
10 /* juno : target is a JUNO board */
11 /* tc2 : target is a TC2 board */
12 /* Leave commented if your board is not listed above */
13 "board" : "juno",
Patrick Bellasi0f8ac682015-10-12 11:29:40 +010014
Patrick Bellasi83aaf5c2016-01-22 10:57:22 +000015 /* Target IP or MAC address */
16 "host" : "192.168.0.20",
Patrick Bellasi0f8ac682015-10-12 11:29:40 +010017
Patrick Bellasi83aaf5c2016-01-22 10:57:22 +000018 /* Login username (has to be sudo enabled) */
19 "username" : "root",
Patrick Bellasi0f8ac682015-10-12 11:29:40 +010020
Patrick Bellasi83aaf5c2016-01-22 10:57:22 +000021 /* Login credentials */
22 /* You can specified either a password or keyfile */
23 "password" : "",
Patrick Bellasi274c8f12015-10-13 15:10:05 +010024 // "keyfile" : "/complete/path/of/your/keyfile",
25
Patrick Bellasi83aaf5c2016-01-22 10:57:22 +000026 /* RT-App Calibration */
27 /* Keep commented to do calibration at first run on a target. */
28 /* Then, replace the values with the ones reported for your */
29 /* specific target in the console logging messages */
30 // "rtapp-calib" : {
31 // "0": 354, "1": 138, "2": 138, "3": 363, "4": 355, "5": 357
32 // },
33
Patrick Bellasib69fa522015-10-13 16:10:28 +010034 /* FTFP Image server */
Patrick Bellasi83aaf5c2016-01-22 10:57:22 +000035 /* This is the folder from where the target gets kernel/DTB */
36 /* images at each boot. */
37 /* The path of images to be deployed are specified by the */
38 /* experiments configuration (e.g. tests/eas/rfc_eas.json) */
Patrick Bellasib69fa522015-10-13 16:10:28 +010039 "tftp" : {
40 "folder" : "/var/lib/tftpboot",
41 "kernel" : "kern.bin",
42 "dtb" : "dtb.bin"
43 },
44
Patrick Bellasi77d01722015-12-04 11:15:00 +000045 /* Devlib modules to enabled for all the experiments */
46 "modules" : [ "bl" ],
Patrick Bellasi1e384c92015-11-05 16:48:51 +000047
Patrick Bellasi77d01722015-12-04 11:15:00 +000048 /* Binary tools to install by default for all experiments */
49 "tools" : [],
Patrick Bellasi1e384c92015-11-05 16:48:51 +000050
Patrick Bellasi83aaf5c2016-01-22 10:57:22 +000051 /* List of test environment features to enable */
52 /* no-kernel : do not deploy kernel/dtb images */
53 /* no-reboot : do not force reboot the target at each */
54 /* configuration change */
55 /* debug : enable debugging messages */
Patrick Bellasi1904cb02016-01-22 14:42:17 +000056 "__features__" : "no-kernel no-reboot"
Patrick Bellasi0f8ac682015-10-12 11:29:40 +010057}