From 8770634fd2bef7aeefff769e8549c3e3973c1553 Mon Sep 17 00:00:00 2001 From: Achilleas Anagnostopoulos Date: Wed, 29 Mar 2017 07:42:38 +0100 Subject: [PATCH] Switch to xenial vagrant box for updated binutils We need binutils 2.26+ so objcopy supports the "--add-symbol" option --- Vagrantfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 16b03eb..a34b4ef 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -8,9 +8,10 @@ Vagrant.configure("2") do |config| config.vm.provider "virtualbox" do |vb| vb.customize ["modifyvm", :id, "--usb", "on"] vb.customize ["modifyvm", :id, "--usbehci", "off"] + vb.customize ["modifyvm", :id, "--cableconnected1", "on"] end - config.vm.box = "minimal/trusty64" + config.vm.box = "minimal/xenial64" config.vm.synced_folder "./", "/home/vagrant/workspace/src/github.com/achilleasa/gopher-os"