alanmacd commented on code in PR #13818:
URL: https://github.com/apache/tvm/pull/13818#discussion_r1091045665
##########
gallery/how_to/work_with_microtvm/install_zephyr.rst:
##########
@@ -34,19 +34,18 @@ Install Zephyr
export ZEPHYR_BASE=${ZEPHYR_PROJECT_PATH}/zephyr
west init ${ZEPHYR_PROJECT_PATH}
cd ${ZEPHYR_BASE}
- git checkout v2.7-branch
+ git checkout v3.2-branch
cd ..
west update
west zephyr-export
chmod -R o+w ${ZEPHYR_PROJECT_PATH}
# Install Zephyr SDK
- ZEPHYR_SDK_VERSION=0.13.2
- ZEPHYR_SDK_FILE="/content/zephyr-sdk-linux-setup.run"
- wget --no-verbose -O $ZEPHYR_SDK_FILE \
-
https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v${ZEPHYR_SDK_VERSION}/zephyr-sdk-${ZEPHYR_SDK_VERSION}-linux-x86_64-setup.run
- chmod +x $ZEPHYR_SDK_FILE
- "$ZEPHYR_SDK_FILE" -- -d /content/zephyr-sdk --quiet
+ cd /content
+ wget
https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.15.2/zephyr-sdk-0.15.2_linux-x86_64.tar.gz
+ tar xvf zephyr-sdk-0.15.2_linux-x86_64.tar.gz
+ mv zephyr-sdk-0.15.2 zephyr-sdk
+ rm zephyr-sdk-0.15.2_linux-x86_64.tar.gz
Review Comment:
does it make sense to keep the use of `ZEPHYR_SDK_VERSION` here as it will
be less tedious to update in the future?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]