From 8d50ec0c607624649987ce389e54a6de00a07098 Mon Sep 17 00:00:00 2001 From: guowenxue <guowenxue@gmail.com> Date: Sun, 05 Jun 2022 20:32:27 +0800 Subject: [PATCH] 1, Update top build.sh 2, Update setup_env.sh 3, update rootfs build shell script and json config file 4, update driver build shell script and json config file --- bsp/images/build.sh | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bsp/images/build.sh b/bsp/images/build.sh index 3359e09..79e7f7b 100755 --- a/bsp/images/build.sh +++ b/bsp/images/build.sh @@ -145,9 +145,9 @@ install_rootfs if [ $IMG_COMPRESS == yes ] ;then - pr_warn " bzip2 compress system image " - rm -f ${IMAGE_NAME}*.bz2 - bzip2 ${IMAGE_NAME} + pr_warn " gzip compress system image " + rm -f ${IMAGE_NAME}*.gz + gzip ${IMAGE_NAME} fi rm -rf ${MNT_POINT} -- Gitblit v1.9.1