1 Star 0 Fork 0

bellstudio/CMSIS-FreeRTOS

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
gen_pack.sh 2.60 KB
一键复制 编辑 原始数据 按行查看 历史
Vladimir Umek 提交于 2025-03-05 21:34 +08:00 . Use gen_pack lib 0.11.0
#!/usr/bin/env bash
# Version: 3.0
# Date: 2023-11-06
# This bash script generates a CMSIS Software Pack: CMSIS-FreeRTOS
#
set -o pipefail
# Set version of gen pack library
# For available versions see https://github.com/Open-CMSIS-Pack/gen-pack/tags.
# Use the tag name without the prefix "v", e.g., 0.7.0
REQUIRED_GEN_PACK_LIB="0.11.0"
# Set default command line arguments
DEFAULT_ARGS=(-c "v")
# Pack warehouse directory - destination
# Default: ./output
#
PACK_OUTPUT=./output
# Temporary pack build directory,
# Default: ./build
#
PACK_BUILD=./build
# Specify directory names to be added to pack base directory
# An empty list defaults to all folders next to this script.
# Default: empty (all folders)
#
PACK_DIRS="
CMSIS
Documentation
Source
"
# Specify file names to be added to pack base directory
# Default: empty
#
PACK_BASE_FILES="
LICENSE
"
# Specify file names to be deleted from pack build directory
# Default: empty
#
PACK_DELETE_FILES="
Documentation/Doxygen
"
# Specify patches to be applied
# Default: empty
#
# PACK_PATCH_FILES=""
# Specify addition argument to packchk
# Default: empty
#
# PACKCHK_ARGS=()
# Specify additional dependencies for packchk
# Default: empty
#
PACKCHK_DEPS="
ARM.CMSIS.pdsc
ARM.Cortex_DFP.pdsc
"
# Optional: restrict fallback modes for changelog generation
# Default: full
# Values:
# - full Tag annotations, release descriptions, or commit messages (in order)
# - release Tag annotations, or release descriptions (in order)
# - tag Tag annotations only
#
PACK_CHANGELOG_MODE="full"
#
# custom pre-processing steps
#
# usage: preprocess <build>
# <build> The build folder
#
function preprocess() {
# add custom steps here to be executed
# before populating the pack build folder
pushd ./Documentation/Doxygen/ > /dev/null
echo "Changing working directory to $(pwd)"
echo "Executing ./gen_doc.sh"
./gen_doc.sh
popd > /dev/null
echo "Changing working directory to $(pwd)"
return 0
}
#
# custom post-processing steps
#
# usage: postprocess <build>
# <build> The build folder
#
function postprocess() {
# add custom steps here to be executed
# after populating the pack build folder
# but before archiving the pack into output folder
return 0
}
############ DO NOT EDIT BELOW ###########
# Set GEN_PACK_LIB_PATH to use a specific gen-pack library root
# ... instead of bootstrap based on REQUIRED_GEN_PACK_LIB
if [[ -f "${GEN_PACK_LIB_PATH}/gen-pack" ]]; then
. "${GEN_PACK_LIB_PATH}/gen-pack"
else
. <(curl -sL "https://raw.githubusercontent.com/Open-CMSIS-Pack/gen-pack/main/bootstrap")
fi
gen_pack "${DEFAULT_ARGS[@]}" "$@"
exit 0
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/bellstudio/CMSIS-FreeRTOS.git
git@gitee.com:bellstudio/CMSIS-FreeRTOS.git
bellstudio
CMSIS-FreeRTOS
CMSIS-FreeRTOS
main

搜索帮助