Skip to content

Commit 72f0935

Browse files
committed
clean up forking section
1 parent 68f7687 commit 72f0935

3 files changed

Lines changed: 18 additions & 4 deletions

File tree

File renamed without changes.

documents/6. Make Your Own CFW/2. 2. forking.md renamed to documents/6. Make Your Own CFW/2. forking.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ Fork wire-os and its submodules.
66

77
1. Fork these repos. When choosing names, just replace the `wire-os` parts with the name you desire:
88

9-
- [wire-os](https://github.com/os-vector/wire-os)
10-
- [wire-os-victor](https://github.com/os-vector/wire-os-victor)
11-
- [wire-os-externals](https://github.com/os-vector/wire-os-externals)
9+
[wire-os](https://github.com/os-vector/wire-os)
10+
[wire-os-victor](https://github.com/os-vector/wire-os-victor)
11+
[wire-os-externals](https://github.com/os-vector/wire-os-externals)
1212

1313
2. Let's say, for example, we called it `diode-os`, and our GitHub username is diode123. Run in a Linux terminal:
1414

@@ -25,6 +25,8 @@ git rm -f anki/victor
2525
rm -rf anki/victor .git/modules/anki/victor
2626
git commit -m "remove wire-os"
2727
git submodule add https://github.com/diode123/diode-os-victor anki/victor
28+
git commit -m "new submodule"
29+
git push
2830
```
2931

30-
4. TODO
32+
- You have successfully created diodeOS.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# How to Develop
2+
3+
The majority of your changes will probably be in the /anki folder, which is built from diode-os-victor.
4+
5+
## Set up your dev environment
6+
7+
You should have two folders: diode-os-victor and diode-os.
8+
9+
Do NOT just make all of you changes in diode-os/anki/victor, despite it being the same repo. `diode-os-victor` can be built standalone, and deployed to a robot with `rsync`. These builds should not end up in a Yocto environment.
10+
11+
TODO
12+

0 commit comments

Comments
 (0)