blob: 8f0587dba13c7c0bccb687fb2925e202f4731b65 [file] [log] [blame]
Patrick Bellasi0f8ac682015-10-12 11:29:40 +01001{
Patrick Bellasi274c8f12015-10-13 15:10:05 +01002 /* Target device (linux|android|host) */
Patrick Bellasi0f8ac682015-10-12 11:29:40 +01003 "platform" : "linux",
4
Patrick Bellasi274c8f12015-10-13 15:10:05 +01005 /* Board used for the experiments */
6 // "board" : "juno",
Patrick Bellasi0f8ac682015-10-12 11:29:40 +01007 "board" : "tc2",
Patrick Bellasi0f8ac682015-10-12 11:29:40 +01008
Patrick Bellasi274c8f12015-10-13 15:10:05 +01009 /* Target IP address or hostname */
Patrick Bellasi0f8ac682015-10-12 11:29:40 +010010 // Juno
Patrick Bellasi274c8f12015-10-13 15:10:05 +010011 // "host" : "192.168.0.10",
12 // "host" : "00:02:F7:00:5A:5b",
Patrick Bellasi0f8ac682015-10-12 11:29:40 +010013 // TC2
Patrick Bellasi274c8f12015-10-13 15:10:05 +010014 // "host" : "192.168.0.20",
Patrick Bellasied5497c2015-10-13 12:33:54 +010015 "host" : "00:02:f7:00:45:e2",
Patrick Bellasi0f8ac682015-10-12 11:29:40 +010016
Patrick Bellasi274c8f12015-10-13 15:10:05 +010017 /* RT-App Calibration */
18 // "rtapp-calib" : {
19 // "0": 354, "1": 138, "2": 138, "3": 363,
20 // "4": 355, "5": 357
21 // },
Patrick Bellasi0f8ac682015-10-12 11:29:40 +010022
Patrick Bellasi274c8f12015-10-13 15:10:05 +010023 /* Login username (if not root should be sudo enabled) */
Patrick Bellasi0f8ac682015-10-12 11:29:40 +010024 "username" : "root",
25
Patrick Bellasi274c8f12015-10-13 15:10:05 +010026 /* Login credentials: password or keyfile */
27 "password" : "",
28 // "keyfile" : "/complete/path/of/your/keyfile",
29
Patrick Bellasib69fa522015-10-13 16:10:28 +010030 /* FTFP Image server */
31 "tftp" : {
32 "folder" : "/var/lib/tftpboot",
33 "kernel" : "kern.bin",
34 "dtb" : "dtb.bin"
35 },
36
Patrick Bellasi77d01722015-12-04 11:15:00 +000037 /* Devlib modules to enabled for all the experiments */
38 "modules" : [ "bl" ],
Patrick Bellasi1e384c92015-11-05 16:48:51 +000039
Patrick Bellasi77d01722015-12-04 11:15:00 +000040 /* Binary tools to install by default for all experiments */
41 "tools" : [],
Patrick Bellasi1e384c92015-11-05 16:48:51 +000042
Patrick Bellasi87f48212015-10-22 11:51:30 +010043 /* The EAS Energy model data required for data analysis */
44 // TC2 Energy Model
45 "nrg_model" : {
46 "little" : {
47 "cpu" : {
48 "nrg_max" : 1024,
49 "cap_max" : 430
50 },
51 "cluster" : {
52 "nrg_max" : 4905
53 }
54 },
55 "big": {
56 "cpu" : {
57 "nrg_max" : 6997,
58 "cap_max" : 1024
59 },
60 "cluster" : {
61 "nrg_max" : 15200
62 }
63 }
64 },
65
66 // JUNO Energy Model
67 // "nrg_model" : {
68 // "little" : {
69 // "cpu" : {
70 // "nrg_max" : 93,
71 // "cap_max" : 447
72 // },
73 // "cluster" : {
74 // "nrg_max" : 57
75 // }
76 // },
77 // "big": {
78 // "cpu" : {
79 // "nrg_max" : 616,
80 // "cap_max" : 1024
81 // },
82 // "cluster" : {
83 // "nrg_max" : 64
84 // }
85 // }
86 // },
87
Patrick Bellasid4aed702015-10-15 12:18:37 +010088 /* Test environment features */
Patrick Bellasie16a4bb2015-10-21 12:20:28 +010089 // no-kernel : do not deploy kernel/dtb images
Patrick Bellasid4aed702015-10-15 12:18:37 +010090 // no-reboot : do not force reboot the target at each configuration change
91 // debug : enable debugging messages
92 "__features__" : ""
Patrick Bellasi0f8ac682015-10-12 11:29:40 +010093
94}