Difference between revisions of "Quick Start Guide/Preparation"

From Ethersex_Wiki
Jump to: navigation, search
(+ArchLinux)
 
m (moved git part to the bottom)
Line 1: Line 1:
 
{{i18n|Quick Start Guide/Preparation}}
 
{{i18n|Quick Start Guide/Preparation}}
  
=== Download the Source from GITHUB ===
+
= Requirements =
 
 
You can download Ethersex from github via git protocol
 
 
 
git clone git://github.com/ethersex/ethersex.git
 
 
 
or via http
 
 
 
git clone http://github.com/ethersex/ethersex.git
 
 
 
Updating a local version of ethersex is possible with:
 
 
 
git pull origin
 
 
 
 
 
 
 
=== Requirements ===
 
  
 
* AVR GCC-Compiler (Version 4.1 or higher)
 
* AVR GCC-Compiler (Version 4.1 or higher)
Line 49: Line 33:
  
 
If the MacPort versions of avr-gcc or avrdude are too old. Here is a instuction how to build the toolchain manually: [http://www.heise.de/ct/projekte/machmit/ctbot/wiki/AVRToolchain]
 
If the MacPort versions of avr-gcc or avrdude are too old. Here is a instuction how to build the toolchain manually: [http://www.heise.de/ct/projekte/machmit/ctbot/wiki/AVRToolchain]
 +
 +
 +
= Download the Source from GitHub =
 +
 +
You can download Ethersex from github via git protocol
 +
 +
git clone git://github.com/ethersex/ethersex.git
 +
 +
or via http
 +
 +
git clone http://github.com/ethersex/ethersex.git
 +
 +
Updating a local version of ethersex is possible with:
 +
 +
git pull origin

Revision as of 20:42, 29 March 2012

Requirements

  • AVR GCC-Compiler (Version 4.1 or higher)
  • AVR LIBC (Version 1.6.8, for 128er ATMegas 1.7)
  • GNU-Tools (Bash, Make, m4, awk)
  • AVR-Programmer (e.g. avrdude)


Linux Debian / Ubuntu

 apt-get install gcc-avr avr-libc binutils-avr m4 gawk libncurses5-dev make dialog git-core avrdude 

Arch Linux

 pacman -Sy m4 avr-binutils avr-libc avrdude avr-gcc git gawk ncurses make perl

Mac OSX

Using MacPorts (www.macports.org) Apple Bash and sed doesn't work, you need to install Bash V4.0 and GNU sed. First, sync the Port Repository to ensure that you´ll build the latest versions of the requirements.

port selfupgrade

port install git-core avrdude avr-binutils avr-gcc avr-libc bash sed


You can also use the CrossPack, but MacPorts is more straightforward and updated. [1]

If the MacPort versions of avr-gcc or avrdude are too old. Here is a instuction how to build the toolchain manually: [2]


Download the Source from GitHub

You can download Ethersex from github via git protocol

git clone git://github.com/ethersex/ethersex.git

or via http

git clone http://github.com/ethersex/ethersex.git

Updating a local version of ethersex is possible with:

git pull origin