Updated Keil MDK documentation to note RTOS and TCP default dependency. Fix for inline error due to tracking code being available too broadly. Use current branch for makedistsmall.sh.

This commit is contained in:
David Garske
2023-06-16 12:01:30 -07:00
committed by Lealem Amedie
parent a56fe30c2c
commit 255aa774f2
3 changed files with 85 additions and 78 deletions

View File

@@ -9,6 +9,7 @@
if [ "$1" == "keep" ]; then KEEP="yes"; else KEEP="no"; fi
WOLFSSL_TEMPDIR=$(mktemp -d) || exit $?
WOLFSSL_BRANCH=$(git symbolic-ref --short HEAD)
function cleanup_on_exit() {
if [ "$KEEP" == "no" ];
@@ -34,7 +35,7 @@ fi
echo "Setting up work directory..."
git clone -q -n --shared . "$WOLFSSL_TEMPDIR" || exit $?
pushd "$WOLFSSL_TEMPDIR" >/dev/null || exit $?
git checkout -q master || exit $?
git checkout -q "$WOLFSSL_BRANCH"
# cleanup example directories
echo "Removing files not needed..."