Skip to content

Commit

Permalink
Remove console=ttyS0,115200 configuration to fix VyOS installation on…
Browse files Browse the repository at this point in the history
… Equinix Metal

This change removes the console=ttyS0,115200 configuration from the VyOS boot configuration in roles/netbootxyz/templates/menu/boot.cfg.j2. This setting is causing issues with VyOS installation on Equinix Metal as the console is not visible during boot.

Console configuration is done in https://github.com/netbootxyz/netboot.xyz/blob/development/roles/netbootxyz/templates/menu/boot.cfg.j2

Example https://github.com/netbootxyz/netboot.xyz/blob/development/roles/netbootxyz/templates/menu/boot.cfg.j2#L120
  • Loading branch information
turegano-equinix authored Jul 30, 2024
1 parent 9363cf3 commit b4f7270
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roles/netbootxyz/templates/menu/vyos.ipxe.j2
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ goto vyos_boot
:vyos_boot
imgfree
set url ${live_endpoint}{{ endpoints['vyos-rolling'].path }}
kernel ${url}vmlinuz boot=live components hostname=vyos username=live nopersistence noautologin union=overlay console=ttyS0,115200 console=tty0 net.ifnames=0 biosdevname=0 fetch=${url}filesystem.squashfs {{ kernel_params }}
kernel ${url}vmlinuz boot=live components hostname=vyos username=live nopersistence noautologin union=overlay console=tty0 net.ifnames=0 biosdevname=0 fetch=${url}filesystem.squashfs {{ kernel_params }}
initrd ${url}initrd

boot
Expand Down

0 comments on commit b4f7270

Please sign in to comment.