Created
April 10, 2019 19:25
-
-
Save ntavish/1cc9287e6a3b93e9d88da99a4bd5d91a to your computer and use it in GitHub Desktop.
zephyr install summary
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Install 'west': | |
pip3 install --user west | |
2. Clone zephyr repos with: | |
west init zephyrproject | |
3. Install python dependencies: | |
pip3 install --user -r zephyr/scripts/requirements.txt | |
4. Install Zephyr SDK: | |
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.10.0/zephyr-sdk-0.10.0-setup.run | |
sh zephyr-sdk-0.10.0-setup.run | |
5. Create ~/.zephyrrc with the following lines: | |
export ZEPHYR_TOOLCHAIN_VARIANT=zephyr | |
export ZEPHYR_SDK_INSTALL_DIR=/opt/zephyr-sdk |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment