!294 最新1.1版本的代码3516编译报错: Disk full

Merge pull request !294 from zhangfanfan2/master
This commit is contained in:
openharmony_ci 2021-06-05 17:38:20 +08:00 committed by Gitee
commit c39c10c978
1 changed files with 3 additions and 1 deletions

View File

@ -88,7 +88,9 @@ elif [ "${FSTYPE}" = "vfat" ]; then
FAT32_ITEM_SIZE=4 FAT32_ITEM_SIZE=4
RESV_CNT=38 RESV_CNT=38
IMG_MIN_SIZE=1048576 IMG_MIN_SIZE=1048576
DIR_SIZE=$(( $(echo $(du -s ${ROOTFS_DIR} | awk '{print $1}')) * 1024 )) DU_DIR_SIZE=$(( $(echo $(du -s ${ROOTFS_DIR} | awk '{print $1}')) * 1024 ))
DIR_NUM=$(( $(echo $(ls -lR ${ROOTFS_DIR} | grep "^d" | wc -l | awk '{print $1}')) + 1 ))
DIR_SIZE=$(( ${DU_DIR_SIZE} + ${DIR_NUM} * 4096 ))
IMG_SIZE=$(( ${DIR_SIZE} / (1 - ${FAT_TAB_NUM} * ${FAT32_ITEM_SIZE} / ${CLT_SIZE}) + ${RESV_CNT} * ${BLK_SIZE})) IMG_SIZE=$(( ${DIR_SIZE} / (1 - ${FAT_TAB_NUM} * ${FAT32_ITEM_SIZE} / ${CLT_SIZE}) + ${RESV_CNT} * ${BLK_SIZE}))
if [ ${IMG_SIZE} -le ${IMG_MIN_SIZE} ]; then if [ ${IMG_SIZE} -le ${IMG_MIN_SIZE} ]; then
IMG_SIZE=${IMG_MIN_SIZE} IMG_SIZE=${IMG_MIN_SIZE}