Comment 2 for bug 1829625

Revision history for this message
Dale Hamel (daleha-gmail) wrote : Re: disco64 vagrant box slow boot due to missing ttyS0 (uartmode1 not set to a log file in virtualbox)

This is also an issue on ubuntu eoan with virtualbox. A workaround is to modify the config to pipe this to a file:

  config.vm.provider 'virtualbox' do |v|
    v.customize ["modifyvm", :id, "--uart1", "0x3F8", "4"]
    v.customize ["modifyvm", :id, "--uartmode1", "file", "./ttyS0.log"]
  end