forked from bastibl/instant-gnuradio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gnuradio.json
92 lines (92 loc) · 2.29 KB
/
gnuradio.json
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"builders": [
{
"type": "virtualbox-ovf",
"headless": true,
"source_path": "vms/base/instant-gnuradio-base.ova",
"ssh_username": "gnuradio",
"ssh_password": "gnuradio",
"shutdown_command": "sudo systemctl poweroff",
"guest_additions_mode": "disable",
"vm_name": "instant-gnuradio",
"export_opts": [
"--manifest",
"--vsys", "0",
"--description", "Instant GNU Radio",
"--version", "instant-1"
],
"format": "ova",
"output_directory": "vms/gnuradio"
}
],
"provisioners": [
{
"type": "file",
"source": "assets/gnuradio-web.desktop",
"destination": ".local/share/applications/gnuradio-web.desktop"
},
{
"type": "file",
"source": "assets/opencl_runtime_16.1.2_x64_rh_6.4.0.37.tgz",
"destination": "Downloads/opencl_runtime_16.1.2_x64_rh_6.4.0.37.tgz"
},
{
"type": "file",
"source": "assets/opencl-silent.cfg",
"destination": "Downloads/opencl-silent.cfg"
},
{
"type": "file",
"source": "assets/gqrx.desktop",
"destination": ".local/share/applications/gqrx.desktop"
},
{
"type": "file",
"source": "assets/fosphor.desktop",
"destination": ".local/share/applications/fosphor.desktop"
},
{
"type": "file",
"source": "assets/inspectrum.desktop",
"destination": ".local/share/applications/inspectrum.desktop"
},
{
"type": "file",
"source": "assets/gnuradio-grc.desktop",
"destination": "gnuradio-grc.desktop"
},
{
"type": "file",
"source": "assets/gqrx-icon.png",
"destination": "Pictures/gqrx-icon.png"
},
{
"type": "file",
"source": "assets/inspectrum-icon.png",
"destination": "Pictures/inspectrum-icon.png"
},
{
"type": "file",
"source": "assets/fosphor-icon.png",
"destination": "Pictures/fosphor-icon.png"
},
{
"type": "file",
"source": "assets/90-usrp.conf",
"destination": "90-usrp.conf"
},
{
"type": "shell",
"scripts": [
"scripts/setup-gnuradio.sh"
]
},
{
"type": "shell",
"scripts": [
"scripts/cleanup.sh"
],
"execute_command": "sudo -E bash '{{.Path}}'"
}
]
}