Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
packer
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kristopher Ruzic
packer
Commits
e84811e2
Commit
e84811e2
authored
Jul 20, 2013
by
Mitchell Hashimoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update changelog
parent
581ed976
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
4 deletions
+9
-4
CHANGELOG.md
CHANGELOG.md
+5
-0
builder/virtualbox/step_type_boot_command.go
builder/virtualbox/step_type_boot_command.go
+2
-2
builder/vmware/step_type_boot_command.go
builder/vmware/step_type_boot_command.go
+2
-2
No files found.
CHANGELOG.md
View file @
e84811e2
...
...
@@ -4,6 +4,11 @@ FEATURES:
*
VMware builder now works with Workstation 9 on Linux.
IMPROVEMENTS:
*
virtualbox, vmware: Add backspace, delete, and F1-F12 keys to the boot
command.
BUG FIXES:
*
core: build names no longer cause invalid config errors. [GH-197]
...
...
builder/virtualbox/step_type_boot_command.go
View file @
e84811e2
...
...
@@ -91,8 +91,8 @@ func (*stepTypeBootCommand) Cleanup(map[string]interface{}) {}
func
scancodes
(
message
string
)
[]
string
{
special
:=
make
(
map
[
string
][]
string
)
special
[
"<b
ackspace
>"
]
=
[]
string
{
"ff"
,
"08"
}
special
[
"<del
ete
>"
]
=
[]
string
{
"ff"
,
"ff"
}
special
[
"<b
s
>"
]
=
[]
string
{
"ff"
,
"08"
}
special
[
"<del>"
]
=
[]
string
{
"ff"
,
"ff"
}
special
[
"<enter>"
]
=
[]
string
{
"1c"
,
"9c"
}
special
[
"<esc>"
]
=
[]
string
{
"01"
,
"81"
}
special
[
"<f1>"
]
=
[]
string
{
"ff"
,
"be"
}
...
...
builder/vmware/step_type_boot_command.go
View file @
e84811e2
...
...
@@ -95,8 +95,8 @@ func (*stepTypeBootCommand) Cleanup(map[string]interface{}) {}
func
vncSendString
(
c
*
vnc
.
ClientConn
,
original
string
)
{
special
:=
make
(
map
[
string
]
uint32
)
special
[
"<b
ackspace
>"
]
=
0xFF08
special
[
"<del
ete
>"
]
=
0xFFFF
special
[
"<b
s
>"
]
=
0xFF08
special
[
"<del>"
]
=
0xFFFF
special
[
"<enter>"
]
=
0xFF0D
special
[
"<esc>"
]
=
0xFF1B
special
[
"<f1>"
]
=
0xFFBE
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment