forked from istarc/stm32
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Vagrantfile
271 lines (245 loc) · 10.6 KB
/
Vagrantfile
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
# -*- mode: ruby -*-
# vi: set ft=ruby :
###
# STM32F4-Discovery Build and Test Environment Dockerfile
#
# VERSION 1.1.0
# VAGRANT_VERSION 1.1.2
# AUTHOR Iztok Starc <i****.s****@gmail.com>
# DESCRIPTION This Vagrantfile is used to build and test Environment for the STM32F4-Discovery board.
# The Vagrantfile is based on the ubuntu 14.04 LTS image from the official repository.
#
# More info:
# - http://istarc.wordpress.com/
# - https://github.com/istarc/stm32
# - https://vagrantcloud.com/istarc/stm32
# Usage
#
#
#
# I provide already built image based on this Vagrantfile and you may pull it from the repository (1).
# Alternatively, you may use this Vagrantfile to build the image yourself (2).
#
# I recommend to use the Docker image, even it comes without preinstalled GUI, unlike the Vagrant image.
# The Docker image is automatically updated after each commit in the repository. Thereby, you can have
# always a fresh and updated image.
#
#
#
# 1. Pull the image from the repository
#
# 1.1 Prerequisites:
#
# vagrant --version
# Vagrant 1.6.3 # Issues with version < 1.5.0
# # Install Vagrant by following instructions at https://www.vagrantup.com/downloads.html
#
# 1.2 Install software dependencies
#
# # Install VirtualBox (https://www.virtualbox.org/)
# sudo apt-get install build-essential virtualbox virtualbox-dkms virtualbox-guest-dkms \
# virtualbox-guest-utils virtualbox-guest-x11 virtualbox-qt
# # Download VirtualBox extension pack (https://www.virtualbox.org/wiki/Downloads)
# wget http://download.virtualbox.org/virtualbox/4.3.14/Oracle_VM_VirtualBox_Extension_Pack-4.3.14-95030.vbox-extpack
# # Install the extension pack
# VBoxManage extpack install Oracle_VM_VirtualBox_Extension_Pack-4.3.14-95030.vbox-extpack
#
# 1.3 Basic usage
#
# cd ~
# vagrant init istarc/stm32
# vagrant up
# # Login as U: admin P: admin
# # Manually enable ST-Link: Devices -> USB Devices -> STMicroelectronics STM32 STLink
#
# 1.4 Build Existing Projects:
#
# # Switch to VirtualBox Container
# cd ~/stm32/
# make clean
# make -j4
#
# 1.5 Deploy Existing Project:
#
# # Switch to VirtualBox Container
# cd ~/stm32/examples/Template.mbed
# make clean
# make -j4
# # Manually enable ST-Link: Devices -> USB Devices -> STMicroelectronics STM32 STLink
# sudo make deploy
#
# 1.6 Test Build Existing Projects via Buildbot:
#
# # Switch to VirtualBox Container
# cd ~/stm32bb
# buildbot start master
# buildslave start slave
# firefox http://localhost:8010
# # Login U: admin P: admin (Upper right corner)
# Click: Waterfall -> test-build-local -> [Use default options] -> Force Build
# # Test builds examples in /home/admin/stm32/examples
# Click: Waterfall -> test-build-repo -> [Use default options] -> Force Build
# # Test builds examples from the https://github.com/istarc/stm32.git repository
# Check: Waterfall -> F5 to Refresh
#
# 1.7 More info:
# - http://istarc.wordpress.com
# - https://github.com/istarc/stm32
# - https://vagrantcloud.com/istarc/stm32
#
#
#
# 2. Build the image
#
# This is alternative to "1. Pull the image from the repository".
#
# 2.1 Prerequisites:
#
# See 1.1.
#
# 2.2 Install software dependencies
#
# See 1.2
#
# 2.3 Build the image
#
# cd ~
# # Get the Vagrantfile to build the image
# wget https://raw.githubusercontent.com/istarc/stm32/master/Vagrantfile
# # Build the image
# vagrant --provision up
# # Wait util provisioning is fully completed
# # Switch to VirtualBox Container, Login with U: admin P: admin
# sudo reboot
# # Enter password: admin
# # Login to GUI as U: admin P: admin
#
# 2.4 Usage: see 1.3 - 1.7
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# All Vagrant configuration is done here. The most common configuration
# options are documented and commented below. For a complete reference,
# please see the online documentation at vagrantup.com.
# Every Vagrant virtual environment requires a box to build off of.
config.vm.box = "ubuntu/trusty64"
# The url from where the 'config.vm.box' box will be fetched if it
# doesn't already exist on the user's system.
# config.vm.box_url = "http://domain.com/path/to/above.box"
# Create a forwarded port mapping which allows access to a specific port
# within the machine from a port on the host machine. In the example below,
# accessing "localhost:8080" will access port 80 on the guest machine.
# config.vm.network :forwarded_port, guest: 80, host: 8080
# Create a private network, which allows host-only access to the machine
# using a specific IP.
# config.vm.network :private_network, ip: "192.168.33.10"
# Create a public network, which generally matched to bridged network.
# Bridged networks make the machine appear as another physical device on
# your network.
# config.vm.network :public_network
# If true, then any SSH connections made will enable agent forwarding.
# Default value: false
# config.ssh.forward_agent = true
# Share an additional folder to the guest VM. The first argument is
# the path on the host to the actual folder. The second argument is
# the path on the guest to mount the folder. And the optional third
# argument is a set of non-required options.
# config.vm.synced_folder "../data", "/vagrant_data"
# Provider-specific configuration so you can fine-tune various
# backing providers for Vagrant. These expose provider-specific options.
# Example for VirtualBox:
#
config.vm.provider :virtualbox do |vb|
# Don't boot with headless mode
vb.gui = true
# Use VBoxManage to customize the VM. For example to change memory:
vb.customize ["modifyvm", :id, "--memory", "1024"]
# Enable DNS
vb.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]
# Enables USB support
vb.customize ["modifyvm", :id, "--usb", "on"]
vb.customize ["modifyvm", :id, "--usbehci", "on"]
end
#
# View the documentation for the provider you're using for more
# information on available options.
# Enable provisioning with Puppet stand alone. Puppet manifests
# are contained in a directory path relative to this Vagrantfile.
# You will need to create the manifests directory and a manifest in
# the file ubuntu/trusty64.pp in the manifests_path directory.
#
# An example Puppet manifest to provision the message of the day:
#
# # group { "puppet":
# # ensure => "present",
# # }
# #
# # File { owner => 0, group => 0, mode => 0644 }
# #
# # file { '/etc/motd':
# # content => "Welcome to your Vagrant-built virtual machine!
# # Managed by Puppet.\n"
# # }
#
# config.vm.provision :puppet do |puppet|
# puppet.manifests_path = "manifests"
# puppet.manifest_file = "site.pp"
# end
# Enable provisioning with chef solo, specifying a cookbooks path, roles
# path, and data_bags path (all relative to this Vagrantfile), and adding
# some recipes and/or roles.
#
# config.vm.provision :chef_solo do |chef|
# chef.cookbooks_path = "../my-recipes/cookbooks"
# chef.roles_path = "../my-recipes/roles"
# chef.data_bags_path = "../my-recipes/data_bags"
# chef.add_recipe "mysql"
# chef.add_role "web"
#
# # You may also specify custom JSON attributes:
# chef.json = { :mysql_password => "foo" }
# end
# Enable provisioning with chef server, specifying the chef server URL,
# and the path to the validation key (relative to this Vagrantfile).
#
# The Opscode Platform uses HTTPS. Substitute your organization for
# ORGNAME in the URL and validation key.
#
# If you have your own Chef Server, use the appropriate URL, which may be
# HTTP instead of HTTPS depending on your configuration. Also change the
# validation key to validation.pem.
#
# config.vm.provision :chef_client do |chef|
# chef.chef_server_url = "https://api.opscode.com/organizations/ORGNAME"
# chef.validation_key_path = "ORGNAME-validator.pem"
# end
#
# If you're using the Opscode platform, your validator client is
# ORGNAME-validator, replacing ORGNAME with your organization name.
#
# If you have your own Chef Server, the default validation client name is
# chef-validator, unless you changed the configuration.
#
# chef.validation_client_name = "ORGNAME-validator"
#
# Setup environment
config.vm.provision "shell", inline: "apt-get update -q && apt-get install openssl wget"
config.vm.provision "shell", inline: "useradd -s /bin/bash -m -d /home/admin -p $(openssl passwd -1 admin) -g admin admin"
config.vm.provision "shell", inline: "sed -Ei 's/adm:x:4:/admin:x:4:admin/' /etc/group"
config.vm.provision "shell", inline: "sed -Ei 's/(\%admin ALL=\(ALL\) )ALL/\1 NOPASSWD:ALL/' /etc/sudoers"
# Setup repository (Automatically selects the best mirror)
config.vm.provision "shell", inline: "mv /etc/apt/sources.list /etc/apt/sources.list.old"
config.vm.provision "shell", inline: "echo 'deb mirror://mirrors.ubuntu.com/mirrors.txt trusty main restricted universe multiverse' >> /etc/apt/sources.list"
config.vm.provision "shell", inline: "echo 'deb mirror://mirrors.ubuntu.com/mirrors.txt trusty-updates main restricted universe multiverse' >> /etc/apt/sources.list"
config.vm.provision "shell", inline: "echo 'deb mirror://mirrors.ubuntu.com/mirrors.txt trusty-backports main restricted universe multiverse' >> /etc/apt/sources.list"
config.vm.provision "shell", inline: "echo 'deb mirror://mirrors.ubuntu.com/mirrors.txt trusty-security main restricted universe multiverse' >> /etc/apt/sources.list"
config.vm.provision "shell", inline: "apt-get update -q"
# Install GCC ARM Toolchain
config.vm.provision "shell", inline: "cd /home/admin && wget https://raw.githubusercontent.com/istarc/stm32/master/setup-env.sh && export HOME=/home/admin && bash setup-env.sh"
config.vm.provision "shell", inline: "chown -R admin:admin /home/admin"
# Install GUI
config.vm.provision "shell", inline: "export DEBIAN_FRONTEND=noninteractive && apt-get -y install xubuntu-desktop xubuntu-community-wallpapers gksu leafpad synaptic eclipse-cdt"
# Remove
# config.vm.provision "shell", inline: "apt-get -y remove nautilus gnome-power-manager gnome-screensaver gnome-termina* gnome-pane* gnome-applet* gnome-bluetooth gnome-desktop* gnome-sessio* gnome-user* gnome-shell-common compiz compiz* unity unity* hud zeitgeist zeitgeist* python-zeitgeist libzeitgeist* activity-log-manager-common gnome-control-center gnome-screenshot overlay-scrollba*"
config.vm.provision "shell", inline: "apt-get -y autoremove"
end