docs: Adding script to pull useful docs from LiteX BuildEnv's wiki.
authorTim 'mithro' Ansell <me@mith.ro>
Fri, 26 Apr 2019 19:28:20 +0000 (14:28 -0500)
committerTim 'mithro' Ansell <me@mith.ro>
Fri, 26 Apr 2019 19:28:20 +0000 (14:28 -0500)
doc/pull-docs-from-buildenv-wiki.sh [new file with mode: 0755]

diff --git a/doc/pull-docs-from-buildenv-wiki.sh b/doc/pull-docs-from-buildenv-wiki.sh
new file mode 100755 (executable)
index 0000000..04690d6
--- /dev/null
@@ -0,0 +1,14 @@
+#!/bin/bash
+
+# Soft-CPU - Description about supported Soft-CPUs.
+# BIOS     - Information about the BIOS and what it is used for.
+# Firmware - Information about compatible Firmware.
+
+for page in Soft-CPU BIOS Firmware; do
+       curl https://raw.githubusercontent.com/wiki/timvideos/litex-buildenv/${page}.md > ${page}.md
+       git add ${page}.md
+done
+
+GIT_MSG=$(tempfile) || exit
+trap "rm -f -- '$GIT_MSG'" EXIT
+git commit --message "Updating documents from LiteX BuildEnv Wiki"