Commit 1a8395ba authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

builder/vmware: support the <tab> special in boot commands

parent 7cdf113e
......@@ -96,8 +96,9 @@ func (*stepTypeBootCommand) Cleanup(map[string]interface{}) {}
func vncSendString(c *vnc.ClientConn, original string) {
special := make(map[string]uint32)
special["<enter>"] = 0xFF0D
special["<return>"] = 0xFF0D
special["<esc>"] = 0xFF1B
special["<return>"] = 0xFF0D
special["<tab>"] = 0xFF09
shiftedChars := "~!@#$%^&*()_+{}|:\"<>?"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment