From 13b700fd3ed763cedcba7dbd17b859077a01aa9c Mon Sep 17 00:00:00 2001 From: TiejunZhou <50469179+TiejunMS@users.noreply.github.com> Date: Mon, 23 Oct 2023 15:31:03 +0800 Subject: Update release version to 6.3.0 and date to 10-31-2023 (#308) --- scripts/update_patch.sh | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 scripts/update_patch.sh (limited to 'scripts/update_patch.sh') diff --git a/scripts/update_patch.sh b/scripts/update_patch.sh new file mode 100755 index 00000000..92e1ba90 --- /dev/null +++ b/scripts/update_patch.sh @@ -0,0 +1,20 @@ +#!/bin/bash + +if [ "$#" -ne 2 ]; then + echo "Usage: $0 \"\" \"\"" + exit 1 +fi + +cd $(dirname `realpath $0`)/.. +current_version="6\\.x" +source_dirs="common common_modules common_smp ports ports_module ports_smp ports_arch utility" +file_list=$(find $source_dirs -type f \( -name "*.[chsS]" -o -name "*.arm" -o -name "*.src" -o -name "*readme*" -o -name "*.mip" \) -print) + +sed -i "s/$current_version /$1/g" $file_list +sed -i "s/$current_version/$1/g" $file_list +sed -i "s/xx-xx-xxxx/$2/g" $file_list + +# Update version in port files +source_dirs="ports ports_module ports_smp ports_arch" +file_list=$(find $source_dirs -type f -name "*.h" -print) +sed -i "/\"Copyright/,/[0-9]\.[0-9]/s/[0-9]\.[0-9\.]\+/$1/" $file_list -- cgit v1.3.1