Fix psuedo-random hangs on make run

Non-virtio nics get persistent names which require a 2 minute timeout
which slows the installer down.  Use net.ifnames=0 in grub config to
handle non virtio nics getting persistent names until a fix arrives.

Signed-off-by: Ryan Harper <ryan.harper@canonical.com>
This commit is contained in:
Ryan Harper 2015-08-21 14:56:30 -05:00
parent d6da4bec97
commit 9836dd0cf2
1 changed files with 2 additions and 2 deletions

View File

@ -44,11 +44,11 @@ done
# Create menuentry for installer
menuentry "Boot Installer - Graphical Console" {
linux /vmlinuz ip=dhcp ro root=LABEL=cloudimg-rootfs overlayroot=tmpfs console=ttyS0 console=tty0 quiet splash
linux /vmlinuz ip=dhcp ro root=LABEL=cloudimg-rootfs overlayroot=tmpfs net.ifnames=0 console=ttyS0 console=tty0 quiet splash
initrd /initrd.img
}
menuentry "Boot Installer - Serial Console" {
linux /vmlinuz ip=dhcp ro root=LABEL=cloudimg-rootfs overlayroot=tmpfs console=tty0 console=ttyS0
linux /vmlinuz ip=dhcp ro root=LABEL=cloudimg-rootfs overlayroot=tmpfs net.ifnames=0 console=tty0 console=ttyS0
initrd /initrd.img
}