In order to facilitate mass updating of version files, add a shell script that recurses into lib/ and drivers/ directories and calls the ABI version update script.
Signed-off-by: Anatoly Burakov <anatoly.bura...@intel.com> --- Notes: v2: - Add this patch to split the shell script from previous commit - Fixup miscellaneous bugs buildtools/update-abi.sh | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100755 buildtools/update-abi.sh diff --git a/buildtools/update-abi.sh b/buildtools/update-abi.sh new file mode 100755 index 0000000000..a6f916a437 --- /dev/null +++ b/buildtools/update-abi.sh @@ -0,0 +1,36 @@ +#!/bin/bash +# SPDX-License-Identifier: BSD-3-Clause +# Copyright(c) 2019 Intel Corporation + +abi_version="" +abi_version_file="./config/ABI_VERSION" +update_path="lib drivers" + +if [ -z "$1" ] +then + # output to stderr + >&2 echo "provide ABI version" + exit 1 +fi + +abi_version=$1 + +if [ -n "$2" ] +then + abi_version_file=$2 +fi + +if [ -n "$3" ] +then + update_path=${@:3} +fi + +echo "New ABI version:" $abi_version +echo "ABI_VERSION path:" $abi_version_file +echo "Path to update:" $update_path + +echo $abi_version > $abi_version_file + +find $update_path -name \*version.map -exec \ + ./buildtools/update_version_map_abi.py {} \ + $abi_version \; -print -- 2.17.1