mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-10-21 20:08:54 +00:00
There's no reason to ship qemu & qemu-virtiofs when the former already includes vitiofs support (and that's the default for 2.x deployments). In case we will enable experimental qemu DAX support, we should add a new target, a "qemu-experimental" target, as Carlos has been working on. Fixes: #1424 Signed-off-by: Fabiano Fidêncio <fidencio@redhat.com>
23 lines
375 B
Bash
Executable File
23 lines
375 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Copyright (c) 2019 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
set -o errexit
|
|
set -o pipefail
|
|
set -o nounset
|
|
|
|
supported_artifacts=(
|
|
"install_clh"
|
|
"install_experimental_kernel"
|
|
"install_firecracker"
|
|
"install_image"
|
|
"install_kata_components"
|
|
"install_kernel"
|
|
"install_qemu"
|
|
)
|
|
|
|
for c in ${supported_artifacts[@]}; do echo $c; done
|