mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-30 11:44:26 +01:00
As done for the other binaries we release, let's add support for "building" (or pulling down) the static binary we ship as part of the kata-containers static tarball (the same one used by kata-deploy). Right now the virtiofsd is installed in /opt/kata/libexec/virtiofsd, a different path than the virtiofsd that comes with QEMU. Signed-off-by: Fabiano Fidêncio <fabiano.fidencio@intel.com>
69 lines
1.2 KiB
Makefile
69 lines
1.2 KiB
Makefile
# Copyright (c) 2021 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
MK_PATH := $(abspath $(lastword $(MAKEFILE_LIST)))
|
|
MK_DIR := $(dir $(MK_PATH))
|
|
|
|
# Verbose build
|
|
V := 1
|
|
|
|
define BUILD
|
|
$(MK_DIR)/kata-deploy-binaries-in-docker.sh $(if $(V),,-s) --build=$1
|
|
endef
|
|
|
|
kata-tarball: | all-parallel merge-builds
|
|
|
|
$(MK_DIR)/dockerbuild/install_yq.sh:
|
|
$(MK_DIR)/kata-deploy-copy-yq-installer.sh
|
|
|
|
all-parallel: $(MK_DIR)/dockerbuild/install_yq.sh
|
|
${MAKE} -f $(MK_PATH) all -j$$(( $$(nproc) - 1 )) V=
|
|
|
|
all: cloud-hypervisor-tarball \
|
|
firecracker-tarball \
|
|
kernel-tarball \
|
|
qemu-tarball \
|
|
rootfs-image-tarball \
|
|
rootfs-initrd-tarball \
|
|
shim-v2-tarball \
|
|
virtiofsd-tarball
|
|
|
|
%-tarball-build: $(MK_DIR)/dockerbuild/install_yq.sh
|
|
$(call BUILD,$*)
|
|
|
|
cloud-hypervisor-tarball:
|
|
${MAKE} $@-build
|
|
|
|
firecracker-tarball:
|
|
${MAKE} $@-build
|
|
|
|
kernel-tarball:
|
|
${MAKE} $@-build
|
|
|
|
kernel-experimental-tarball:
|
|
${MAKE} $@-build
|
|
|
|
|
|
qemu-tarball:
|
|
${MAKE} $@-build
|
|
|
|
rootfs-image-tarball:
|
|
${MAKE} $@-build
|
|
|
|
rootfs-initrd-tarball:
|
|
${MAKE} $@-build
|
|
|
|
shim-v2-tarball:
|
|
${MAKE} $@-build
|
|
|
|
virtiofsd-tarball:
|
|
${MAKE} $@-build
|
|
|
|
merge-builds:
|
|
$(MK_DIR)/kata-deploy-merge-builds.sh build
|
|
|
|
install-tarball:
|
|
tar -xvf ./kata-static.tar.xz -C /
|