Skip to content

Commit 6fec223

Browse files
committed
node-builder: multiple runtime_make_flags text lines
Concatenate multiple strings into runtime_make_flags, to make package_build.sh easier to read. Signed-off-by: Dan Mihai <dmihai@microsoft.com>
1 parent a149d22 commit 6fec223

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tools/osbuilder/node-builder/azure-linux/package_build.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@ common_file="common.sh"
2020
source "${common_file}"
2121

2222
# these options ensure we produce the proper CLH config file
23-
runtime_make_flags="SKIP_GO_VERSION_CHECK=1 QEMUCMD= FCCMD= ACRNCMD= STRATOVIRTCMD= DEFAULT_HYPERVISOR=cloud-hypervisor
24-
DEFMEMSZ=0 DEFSTATICSANDBOXWORKLOADMEM=512 DEFVCPUS=0 DEFSTATICSANDBOXWORKLOADVCPUS=1 DEFVIRTIOFSDAEMON=${VIRTIOFSD_BINARY_LOCATION} PREFIX=${INSTALL_PATH_PREFIX}"
23+
runtime_make_flags="SKIP_GO_VERSION_CHECK=1 QEMUCMD= FCCMD= ACRNCMD= STRATOVIRTCMD= DEFAULT_HYPERVISOR=cloud-hypervisor"
24+
runtime_make_flags+=" DEFMEMSZ=0 DEFSTATICSANDBOXWORKLOADMEM=512 DEFVCPUS=0 DEFSTATICSANDBOXWORKLOADVCPUS=1"
25+
runtime_make_flags+=" DEFVIRTIOFSDAEMON=${VIRTIOFSD_BINARY_LOCATION} PREFIX=${INSTALL_PATH_PREFIX}"
2526

2627
# - for vanilla Kata we use the kernel binary. For ConfPods we use IGVM, so no need to provide kernel path.
2728
# - for vanilla Kata we explicitly set DEFSTATICRESOURCEMGMT_CLH. For ConfPods,

0 commit comments

Comments
 (0)