6294204686
* Updating to ubuntu 16.04 * Fixing dependencies * Fixing locale complaints * Removing unused packages Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
60 lines
1.6 KiB
Ruby
60 lines
1.6 KiB
Ruby
################################################################################
|
|
#
|
|
# Vagrantfile
|
|
#
|
|
################################################################################
|
|
|
|
# Buildroot version to use
|
|
RELEASE='2016.08'
|
|
|
|
### Change here for more memory/cores ###
|
|
VM_MEMORY=2048
|
|
VM_CORES=1
|
|
|
|
Vagrant.configure('2') do |config|
|
|
config.vm.box = 'bento/ubuntu-16.04'
|
|
|
|
config.vm.provider :vmware_fusion do |v, override|
|
|
v.vmx['memsize'] = VM_MEMORY
|
|
v.vmx['numvcpus'] = VM_CORES
|
|
end
|
|
|
|
config.vm.provider :virtualbox do |v, override|
|
|
v.memory = VM_MEMORY
|
|
v.cpus = VM_CORES
|
|
|
|
required_plugins = %w( vagrant-vbguest )
|
|
required_plugins.each do |plugin|
|
|
system "vagrant plugin install #{plugin}" unless Vagrant.has_plugin? plugin
|
|
end
|
|
end
|
|
|
|
config.vm.provision 'shell' do |s|
|
|
s.inline = 'echo Setting up machine name'
|
|
|
|
config.vm.provider :vmware_fusion do |v, override|
|
|
v.vmx['displayname'] = "Buildroot #{RELEASE}"
|
|
end
|
|
|
|
config.vm.provider :virtualbox do |v, override|
|
|
v.name = "Buildroot #{RELEASE}"
|
|
end
|
|
end
|
|
|
|
config.vm.provision 'shell', inline:
|
|
"sudo dpkg --add-architecture i386
|
|
sudo apt-get -q update
|
|
sudo apt-get purge -q -y snapd lxcfs lxd ubuntu-core-launcher snap-confine
|
|
sudo apt-get -q -y upgrade
|
|
sudo apt-get -q -y install build-essential libncurses5-dev \
|
|
git bzr cvs mercurial subversion libc6:i386 unzip bc
|
|
sudo apt-get -q -y autoremove
|
|
sudo apt-get -q -y clean
|
|
sudo update-locale LC_ALL=C"
|
|
|
|
config.vm.provision 'shell', privileged: false, inline:
|
|
"echo 'Downloading and extracting buildroot #{RELEASE}'
|
|
wget -q -c http://buildroot.org/downloads/buildroot-#{RELEASE}.tar.gz
|
|
tar axf buildroot-#{RELEASE}.tar.gz"
|
|
end
|