From 21feef7ebfb359909a4cd1521ec3361ed313cd6c Mon Sep 17 00:00:00 2001 From: Kaspars Dambis Date: Tue, 9 Apr 2019 16:21:51 +0300 Subject: [PATCH] The UART1 is required for Vagrant to work --- Vagrantfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 7a15b88..7c580a7 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -7,9 +7,9 @@ Vagrant.configure(2) do |config| config.vm.network "private_network", type: "dhcp" config.vm.synced_folder projectPath, "/vagrant" - # Get rid of ubuntu-xenial-16.04-cloudimg-console.log + # Rename ubuntu-xenial-16.04-cloudimg-console.log to console.log config.vm.provider "virtualbox" do |vb| - vb.customize ["modifyvm", :id, "--uartmode1", "disconnected"] + vb.customize ["modifyvm", :id, "--uartmode1", "file", "console.log"] end config.vm.provision :shell,