Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/zmk/devcontainer-feature.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"zmkfirmware"
],
"default": "zmkfirmware",
"description": "Select or enter a Zephyr git organization (e.g. 'zephyrproject-rtos')."
"description": "Select or enter a Zephyr git organization (e.g. 'zephyrproject-rtos' or 'zmkfirmware')."
},
"zephyr_git_reponame": {
"type": "string",
Expand All @@ -34,10 +34,10 @@
"zephyr_sdk_version": {
"type": "string",
"proposals": [
"0.17.1"
"0.16.9"
],
"default": "0.17.1",
"description": "Select or enter a Zephyr git revision (e.g. '0.17.1')."
"default": "0.16.9",
"description": "Select or enter a Zephyr git revision (e.g. '0.16.9')."
},
"architecture": {
"type": "string",
Expand Down
2 changes: 1 addition & 1 deletion src/zmk/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export DEBIAN_FRONTEND=noninteractive
ZEPHYR_GIT_ORG="${ZEPHYR_GIT_ORG:-zephyrproject-rtos}"
ZEPHYR_GIT_REPONAME="${ZEPHYR_GIT_REPONAME:-zephyr}"
ZEPHYR_GIT_REVISION="${ZEPHYR_GIT_REVISION:-main}"
ZEPHYR_SDK_VERSION="${ZEPHYR_SDK_VERSION:-0.17.1}"
ZEPHYR_SDK_VERSION="${ZEPHYR_SDK_VERSION:-0.16.9}"
ZEPHYR_ARCHITECTURE="${ARCHITECTURE:-arm}"

if [ "$(id -u)" -ne 0 ]; then
Expand Down