From 94c3c67195f16c68768d00d893495ed4e12b02a7 Mon Sep 17 00:00:00 2001 From: "meiyou.hr" Date: Thu, 14 Mar 2024 15:39:31 +0800 Subject: [PATCH] update make anolis_defconfig --- tests/anck-pack-and-boot/anck_build.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/anck-pack-and-boot/anck_build.sh b/tests/anck-pack-and-boot/anck_build.sh index dc5ad9c..043999d 100644 --- a/tests/anck-pack-and-boot/anck_build.sh +++ b/tests/anck-pack-and-boot/anck_build.sh @@ -115,8 +115,8 @@ if [ $1 == "build_allyes_config" ]; then show_result $1 $? elif [ $1 == "build_anolis_defconfig" ]; then echo "== Build Kernel with anolis_defconfig ==" - echo "CMD: make clean && cp -f arch/${kernel_arch}/configs/anolis_defconfig .config && make olddefconfig && make -j $job_num -s && make modules -j $job_num -s" - make clean && cp -f arch/${kernel_arch}/configs/anolis_defconfig .config && make olddefconfig && make -j $job_num -s && make modules -j $job_num -s + echo "CMD: make clean && make anolis_defconfig && make olddefconfig && make -j $job_num -s && make modules -j $job_num -s" + make clean && make anolis_defconfig && make olddefconfig && make -j $job_num -s && make modules -j $job_num -s show_result $1 $? elif [ $1 == "build_allno_config" ]; then echo "== Build Kernel with allnoconfig ==" @@ -125,8 +125,8 @@ elif [ $1 == "build_allno_config" ]; then show_result $1 $? elif [ $1 == "build_anolis_debug_defconfig" ]; then echo "== Build Kernel with anolis-debug_defconfig ==" - echo "CMD: make clean && cp -f arch/${kernel_arch}/configs/anolis-debug_defconfig .config && make olddefconfig && make -j $job_num -s && make modules -j $job_num -s" - make clean && cp -f arch/${kernel_arch}/configs/anolis-debug_defconfig .config && make olddefconfig && make -j $job_num -s && make modules -j $job_num -s + echo "CMD: make clean && make anolis-debug_defconfig && make olddefconfig && make -j $job_num -s && make modules -j $job_num -s" + make clean && make anolis-debug_defconfig && make olddefconfig && make -j $job_num -s && make modules -j $job_num -s show_result $1 $? elif [ $1 == "check_Kconfig" ]; then echo "== Check kconfig ==" -- Gitee