-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Documented the improved local setup for the native approach.
- Loading branch information
1 parent
112ee5f
commit 18e9c7e
Showing
2 changed files
with
28 additions
and
17 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
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 |
---|---|---|
|
@@ -92,6 +92,12 @@ Then step into the repository. | |
cd zmk | ||
``` | ||
|
||
Clone your `zmk-config` into the repository, making sure that the local name for it is `zmk-config`. | ||
|
||
```sh | ||
git clone [email protected]:<Your Username>/zmk-config.git zmk-config | ||
``` | ||
|
||
## 3. Get Zephyr and install Python dependencies | ||
|
||
:::note | ||
|
@@ -179,7 +185,7 @@ pip install west | |
5. Initialize the application and update to fetch modules, including Zephyr: | ||
|
||
```sh | ||
west init -l app/ | ||
west init -l local/ | ||
west update | ||
``` | ||
|
||
|
@@ -268,7 +274,7 @@ pip3 install -U west | |
2. Initialize the application and update to fetch modules, including Zephyr: | ||
|
||
```sh | ||
west init -l app/ | ||
west init -l local/ | ||
west update | ||
``` | ||
|
||
|