summaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
authorDominic Spill <dominicgs@gmail.com>2012-09-24 15:24:34 +1000
committerDominic Spill <dominicgs@gmail.com>2012-09-24 15:24:34 +1000
commit803792b9d22aeceb2f8a6e1a15036b34799140f9 (patch)
treef0edc92b177023fc57c284ca77cbc110aa66326c /web
parent459a7a0fabf42add06afa538e125fc3cb3a53596 (diff)
Update build guide to include Kismet prerequisites
Add preliminary firmware build instructions
Diffstat (limited to 'web')
-rw-r--r--web/content/usage/build.html6
1 files changed, 4 insertions, 2 deletions
diff --git a/web/content/usage/build.html b/web/content/usage/build.html
index e310faf..bde938c 100644
--- a/web/content/usage/build.html
+++ b/web/content/usage/build.html
@@ -203,7 +203,7 @@ using the ubertooth-dfu tool:</p>
</pre>
<br />
<h3>Building firmware</h3>
-<p>Firmware images are built using the Arm Cortex M3 version of gvv, which is
+<p>Firmware images are built using the Arm Cortex M3 version of gcc, which is
available <a href="https://launchpad.net/gcc-arm-embedded">here</a>.</p>
<pre>
wget https://launchpad.net/gcc-arm-embedded/4.6/4.6-2012-q2-update/+download/gcc-arm-none-eabi-4_6-2012q2-20120614.tar.bz2
@@ -211,7 +211,9 @@ available <a href="https://launchpad.net/gcc-arm-embedded">here</a>.</p>
sudo cp -R gcc-arm-none-eabi-4_6-2012q2 /opt/
</pre>
<p>You will probably need to add the compiler to your path as follows:</p>
-<pre>export PATH=$PATH:/opt/gcc-arm-none-eabi-4_6-2012q2/bin</pre>
+<pre>
+ export PATH=$PATH:/opt/gcc-arm-none-eabi-4_6-2012q2/bin
+</pre>
<p>To add this permanently to your path, run the following:</p>
<pre>
echo "export PATH=$PATH:/opt/gcc-arm-none-eabi-4_6-2012q2/bin" >> ~/.bashrc