-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update to get building for kyria rev3
- Loading branch information
1 parent
4834e81
commit a845a36
Showing
5 changed files
with
19 additions
and
42 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Setup | ||
- Setup VS Code and Dev Container: https://zmk.dev/docs/development/setup#initialize--update-zephyr-workspace | ||
- Run `bin/create-docker-volume.sh` | ||
- Follow instructions for building splits: https://zmk.dev/docs/development/build-flash#building-for-split-keyboards | ||
- Follow instructions for building from zmk-config: https://zmk.dev/docs/development/build-flash#building-from-zmk-config-folder | ||
|
||
When specifying the `-DSHIELD` flag, make sure it's `-DSHIELD=<name of .keymap file>_left`. So for `config/kyria_rev3.keymap`, the flag will be `-DSHIELD=kyria_rev3_left` |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -xe | ||
|
||
if docker volume ls | grep -q zmk-config; then | ||
docker volume rm zmk-config | ||
fi | ||
|
||
docker volume create --driver local -o o=bind -o type=none -o \ | ||
device="$(pwd)" zmk-config |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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