From a176f4f815a378013a793eae3488fba5ea29458b Mon Sep 17 00:00:00 2001 From: gaowei Date: Mon, 1 Feb 2021 10:24:26 +0800 Subject: [PATCH] microvm_image: remove -j to reduce memory usage during building. --- script/step/make_microvm_image.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/step/make_microvm_image.sh b/script/step/make_microvm_image.sh index 90cc9b8..c40b2f7 100644 --- a/script/step/make_microvm_image.sh +++ b/script/step/make_microvm_image.sh @@ -150,9 +150,9 @@ make_micro_kernel(){ pushd /usr/src/linux${kernel_src_version} cp ${microvm_dir}/${kernel_config} .config if [ ${arch} == "x86_64" ]; then - make ARCH=x86_64 -j + make ARCH=x86_64 elif [ ${arch} == "aarch64" ]; then - make ARCH=arm64 -j + make ARCH=arm64 else LOG "${arch} is not supported yet." return 0 -- Gitee