tylert / packer-build

Packer Automated VM Image and Vagrant Box Builds

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ubuntu/xenial/base-uefi.json freezes on GRUB menu

ardling opened this issue · comments

I'm running ./scripts/vbox.sh ubuntu/xenial/base-uefi.json and it freezes on GRUB menu.
vbox_install_error

I have tried ./scripts/vbox.sh ubuntu/xenial/base.json, all works good.

working boot_command:

"boot_command": [
  "c<wait>",
  "linux /install/vmlinuz ",
  "auto=true ",
  "url=http://{{.HTTPIP}}:{{.HTTPPort}}/{{user `preseed_file`}} ",
  "language={{user `language`}} ",
  "country={{user `country`}} ",
  "locale={{user `locale`}} ",
  "hostname={{user `vm_name`}} ",
  "domain={{user `domain`}} ",
  "interface=auto ",
  "console-setup/ask_detect=false ",
  "keyboard-configuration/layoutcode={{user `keyboard`}} ",
  "vga=788 noprompt quiet --<enter>",
  "initrd /install/initrd.gz<enter>",
  "boot<enter>"
],```

@ardling thanks for the report and for testing a working boot command. Same as the contents of efi_boot_command.txt in the root of the project tree. I'll try to get your suggested fix applied ASAP.

Fixed. Thanks again.