From c6fef7c499a21ec1443f540957ae2f4ae3544841 Mon Sep 17 00:00:00 2001 From: Martin Oldfield Date: Mon, 17 Sep 2012 16:05:21 +0100 Subject: Added installation notes for Fedora as per Rickard Lindberg's patch; tweaked notes for other OSs --- README.md | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index f086c92..8dfd6f8 100644 --- a/README.md +++ b/README.md @@ -38,14 +38,23 @@ On Linux, you might prefer: AVR_TOOLS_DIR = /usr The Makefile also delegates resetting the board to a short Perl program. -You'll need to install Device::SerialPort to use it though. On Debian or -Ubuntu do +You'll need to install Device::SerialPort to use it though. You'll also +need the YAML library to run ard-parse-boards. + +On Debian or Ubuntu: apt-get install libdevice-serial-perl + apt-get install libyaml-perl + +On Fedora: + + yum install perl-Device-SerialPort + yum install perl-YAML -On other systems +On other systems: cpanm Device::SerialPort + cpanm YAML ## User Libraries -- cgit v1.2.3 From 22b4a0834ab7c5123df908fd546198688c96023c Mon Sep 17 00:00:00 2001 From: Martin Oldfield Date: Mon, 17 Sep 2012 16:25:21 +0100 Subject: Fixed ARDUNIO/ARDUINO typo in README.md as per Kalin Kozhuharov's comment --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index 8dfd6f8..a55efbf 100644 --- a/README.md +++ b/README.md @@ -60,5 +60,5 @@ On other systems: In order to use Arduino libraries installed in the user's sketchbook folder (the standard location for custom libraries when using the Arduino IDE), you need to -set the `ARDUNIO_SKETCHBOOK` variable to point to this directory. By default it +set the `ARDUINO_SKETCHBOOK` variable to point to this directory. By default it is set to `$HOME/sketchbook`. -- cgit v1.2.3 From c02da764aca6b6553d7d9b5d9dbdb6f4148e5cb6 Mon Sep 17 00:00:00 2001 From: Martin Oldfield Date: Mon, 17 Sep 2012 16:34:12 +0100 Subject: Changed the name of the Debian/Ubuntu package to arduino-mk (just a documentation patch) as per Scott Howard's comment --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index a55efbf..0d949ae 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ documentation](http://mjo.tc/atelier/2009/02/arduino-cli.html "Documentation") exists. If you're using Debian or Ubuntu, you can find this in the -arduino-core package. +arduino-mk package. # Important Changes, 2012-04-29 -- cgit v1.2.3 From 4241eccacc6a64cff1638a393a96a8a34acda9d3 Mon Sep 17 00:00:00 2001 From: Andreas Lohr Date: Sun, 7 Oct 2012 11:54:14 +0200 Subject: added MacPorts --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'README.md') diff --git a/README.md b/README.md index 0d949ae..9351277 100644 --- a/README.md +++ b/README.md @@ -51,6 +51,13 @@ On Fedora: yum install perl-Device-SerialPort yum install perl-YAML +On Mac using MacPorts: + + sudo port install p5-device-serialport + sudo port install p5-YAML + + and use /opt/local/bin/perl5 instead of /usr/bin/perl + On other systems: cpanm Device::SerialPort -- cgit v1.2.3 From 9ebae306d0604273112f19e1311b9923c6a4af18 Mon Sep 17 00:00:00 2001 From: Adam Dunlap Date: Fri, 17 Aug 2012 11:50:05 -0700 Subject: Show original line number for error messages --- README.md | 1 + 1 file changed, 1 insertion(+) (limited to 'README.md') diff --git a/README.md b/README.md index 44a8d9f..593369c 100644 --- a/README.md +++ b/README.md @@ -118,6 +118,7 @@ The following are the list of changes that I have made or merged in this fork. H ### 0.10.2 15.xii.2012 Sudar - Added sketch size verification. (https://github.com/fornellas) +- Show original line number for error messages (https://github.com/WizenedEE) ## Know Issues - Because of the way the makefile is structured, the configuration parameters gets printed twice. -- cgit v1.2.3