blob: 06d3fbf5620dd9c5dea2754ddb7f572215cdcd6a [file] [log] [blame]
{
/* 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"
}