Files
rt-thread/bsp/k230/utils.sh
Chen Wang e9f6992fa1 bsp: k230: add flashsd script
Add a script to call rttpkgtool's sdcard.sh.
Ths script encapsulate checking and downloading
of rttpkgtool and call ./script/sdcard.sh.

It also print new message so user need not
learn how to use sdcard.sh.

Update README.md.

Signed-off-by: Chen Wang <unicorn_wang@outlook.com>
2025-05-20 11:23:40 +08:00

33 lines
845 B
Bash

function download_rttpkgtool()
{
local project_path=$1
local restult=$(curl -m 10 -s http://www.ip-api.com/json)
local country=$(echo $restult | sed 's/.*"country":"\([^"]*\)".*/\1/')
#echo "Country: $country"
if [ "$country" == "China" ]; then
local url_rttpkgtool="https://gitee.com/unicornx/rttpkgtool.git"
else
local url_rttpkgtool="https://github.com/plctlab/rttpkgtool.git"
fi
#echo "rttpkgtool URL: ${url_rttpkgtool}"
if [ ! -d ${project_path}/rttpkgtool ]; then
echo "rttpkgtool does not exist, clone it from ${url_rttpkgtool}"
git clone -b for-k230 ${url_rttpkgtool} ${project_path}/rttpkgtool
if [ $? -ne 0 ]; then
echo "Failed to clone ${url_rttpkgtool} !"
return 1
fi
else
echo "rttpkgtool already exists"
pushd ${project_path}/rttpkgtool
git checkout for-k230
git pull
popd
fi
return 0
}