Fixing README.
authortravisutk <travisutk@12e2690d-a6be-4b82-a7b7-67c4a43b65c8>
Mon, 23 Apr 2012 15:52:43 +0000 (15:52 +0000)
committertravisutk <travisutk@12e2690d-a6be-4b82-a7b7-67c4a43b65c8>
Mon, 23 Apr 2012 15:52:43 +0000 (15:52 +0000)
git-svn-id: https://svn.code.sf.net/p/goodfet/code/trunk@1136 12e2690d-a6be-4b82-a7b7-67c4a43b65c8

README.darwin [deleted file]
README.txt [new file with mode: 0644]

diff --git a/README.darwin b/README.darwin
deleted file mode 100644 (file)
index eff9a75..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-#Make sure that you've installed the following:
-# XCode
-# MacPorts
-# FTDI Virtual COM Driver
-
-#Now install some ports.
-sudo port install py26-serial python_select wget subversion
-
-# Code
-mkdir -p ~/svn; cd /svn
-svn co https://goodfet.svn.sourceforge.net/svnroot/goodfet
-
-# Client
-cd ~/svn/goodfet/trunk/client
-sudo make link
-
-# Python, other tools.
-sudo python_select python26
-
-# Load firmware, not yet building it locally.
-goodfet.bsl --fromweb
-goodfet.monitor test
-
-
diff --git a/README.txt b/README.txt
new file mode 100644 (file)
index 0000000..611329b
--- /dev/null
@@ -0,0 +1,26 @@
+#For Mac, install the following.
+# XCode
+# MacPorts
+# FTDI Virtual COM Driver
+
+# In Linux, the FTDI driver should be included by default.  Be sure
+# that the user is allowed to use /dev/ttyUSB0, which often requires
+# being a member of the dialout group.
+
+# Now install these packages.  They might have different names.
+# python-serial wget subversion gcc-msp430 curl
+
+# Use subversion to grab the code.
+mkdir -p ~/svn; cd ~/svn
+svn co https://goodfet.svn.sourceforge.net/svnroot/goodfet
+
+# Then link the client into /usr/local/bin/
+# You could also add the client directory to your $PATH.
+cd ~/svn/goodfet/trunk/client
+sudo make link
+
+# Load firmware, not yet building it locally.
+goodfet.bsl --fromweb
+goodfet.monitor test
+
+