[Bug 239527] Loading vesa(4) via loader.conf(5) hangs the boot loader when running in VirtualBox (emulators/virtualbox-ose)

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Tue Jul 30 15:18:35 UTC 2019


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=239527

--- Comment #1 from Mateusz Piotrowski <0mp at FreeBSD.org> ---
I've missed some things from the previous Vagrantfile. With this one I can
reproduce the issue reliably:

Vagrant.configure("2") do |config|
  config.ssh.shell = "sh"
  config.vm.box = "freebsd/FreeBSD-12.0-RELEASE"

  config.vm.provider "virtualbox" do |vb|
    vb.gui = true
  end

  config.vm.boot_timeout = 3600

  config.vm.provision "shell", inline: <<-SHELL
    printf '%s\n' 'boot_mute="YES"' 'vesa_load="YES"' > /boot/loader.conf
  SHELL
end

-- 
You are receiving this mail because:
You are the assignee for the bug.


More information about the freebsd-bugs mailing list