Skip to content

Commit f5e2a42

Browse files
committed
Updated Firecracker build process
Fixed typo Signed-off-by: Plamen Petrov <[email protected]>
1 parent bb1075c commit f5e2a42

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,9 @@ demo-network: install-cni-bins $(FCNET_CONFIG)
281281
# Firecracker submodule
282282
##########################
283283
.PHONY: firecracker
284-
firecracker: $(FIRECRACKER_BIN)
284+
firecracker:
285+
docker build -t fcuvm/dev:v16_upf -f _submodules/firecracker/tools/devctr/Dockerfile.x86_64 _submodules/firecracker/
286+
_submodules/firecracker/tools/devtool build --release
285287

286288
.PHONY: install-firecracker
287289
install-firecracker: firecracker

internal/common.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const (
3434
// FirecrackerVSockName is the name of the Firecracker VSock unix path used for communication
3535
// between the runtime and the agent
3636
FirecrackerVSockName = "firecracker.vsock"
37-
// FirecrackerUPFSockName is the name of the Firecracker UPF socker
37+
// FirecrackerUPFSockName is the name of the Firecracker UPF socket
3838
FirecrackerUPFSockName = "firecracker.upfsock"
3939
// FirecrackerLogFifoName is the name of the Firecracker VMM log FIFO
4040
FirecrackerLogFifoName = "fc-logs.fifo"

0 commit comments

Comments
 (0)