Add models directory, add ME Analyzer tool

This commit is contained in:
Jeremy Soller
2019-03-18 10:17:06 -06:00
parent 12619d9747
commit 526244a830
9 changed files with 32 additions and 0 deletions

4
.gitmodules vendored
View File

@@ -62,3 +62,7 @@
path = apps/firmware-setup path = apps/firmware-setup
url = https://github.com/system76/firmware-setup.git url = https://github.com/system76/firmware-setup.git
branch = master branch = master
[submodule "tools/MEAnalyzer"]
path = tools/MEAnalyzer
url = https://github.com/platomav/MEAnalyzer.git
branch = master

6
models/README.md Normal file
View File

@@ -0,0 +1,6 @@
# Models
- [System76 Darter Pro (darp5)](./darp5/README.md)
- [System76 Galago Pro (galp2)](./galp2/README.md)
- [System76 Galago Pro (galp3-b)](./galp3-b/README.md)
- [System76 Galago Pro (galp3-c)](./galp3-c/README.md)
- [System76 Galago Pro (galp3)](./galp3/README.md)

6
models/README.md.sh Executable file
View File

@@ -0,0 +1,6 @@
echo "# Models" > README.md
for readme in ./*/README.md
do
line="$(head -n 1 "$readme" | cut -d ' ' -f2-)"
echo "- [$line]($readme)" >> README.md
done

3
models/darp5/README.md Normal file
View File

@@ -0,0 +1,3 @@
# System76 Darter Pro (darp5)
https://system76.com/guides/galp3

3
models/galp2/README.md Normal file
View File

@@ -0,0 +1,3 @@
# System76 Galago Pro (galp2)
https://system76.com/guides/galp2

3
models/galp3-b/README.md Normal file
View File

@@ -0,0 +1,3 @@
# System76 Galago Pro (galp3-b)
https://system76.com/guides/galp3

3
models/galp3-c/README.md Normal file
View File

@@ -0,0 +1,3 @@
# System76 Galago Pro (galp3-c)
https://system76.com/guides/galp3

3
models/galp3/README.md Normal file
View File

@@ -0,0 +1,3 @@
# System76 Galago Pro (galp3)
https://system76.com/guides/galp3

1
tools/MEAnalyzer Submodule

Submodule tools/MEAnalyzer added at 51b7a16a1d