Difference between revisions of "POD installation guide"
From ArmadeusWiki
(→Install from package) |
|||
Line 17: | Line 17: | ||
* ''Quartus'' : to generate synthesis project for Altera. | * ''Quartus'' : to generate synthesis project for Altera. | ||
* ''ARMadeus SDK'' : to generate driver project for the Armadeus boards. | * ''ARMadeus SDK'' : to generate driver project for the Armadeus boards. | ||
+ | |||
+ | == Install from subversion tree == | ||
+ | |||
+ | * Checkout the source code with following command (subversion is needed): | ||
+ | <pre class="host"> | ||
+ | $ svn co https://periphondemand.svn.sourceforge.net/svnroot/periphondemand/trunk periphondemand | ||
+ | $ cd periphondemand/ | ||
+ | </pre> | ||
+ | * Install POD (with root privileges): | ||
+ | <pre class="host"> | ||
+ | $ sudo python setup.py install | ||
+ | </pre> | ||
== Install from package == | == Install from package == | ||
− | {{Note| For this moment, package must be created from svn repository first (see next Chapter). Release will be downloadable soon}} | + | |
+ | {{Note| For this moment, package must be created from svn repository first (see next Chapter). Release will be downloadable soon.}} | ||
* Decompress the package PeriphOnDemand-X.X.tar.gz in install directory: | * Decompress the package PeriphOnDemand-X.X.tar.gz in install directory: | ||
<pre class="host"> | <pre class="host"> | ||
Line 36: | Line 49: | ||
== Generate package from subversion tree == | == Generate package from subversion tree == | ||
− | * | + | * If not already done, checkout the source code with following command (subversion is needed): |
<pre class="host"> | <pre class="host"> | ||
$ svn co https://periphondemand.svn.sourceforge.net/svnroot/periphondemand/trunk periphondemand | $ svn co https://periphondemand.svn.sourceforge.net/svnroot/periphondemand/trunk periphondemand |
Revision as of 13:08, 25 November 2010
Page under construction... Informations on this page are not guaranteed !!
Contents
Prerequisites
Mandatory
- python : POD is written in python.
- pyparsing : a python module to parse files.
On ubuntu, python is already installed, just install pyparsing package with command :
[ ] $ sudo apt-get install python-pyparsing
Optional
- ghdl, gtkwave : it's not mandatory, POD can generate VHDL testbench ready for ghdl simulator. As it's standard VHDL, another simulator should work.
- ISE Webpack : to generate synthesis project for Xilinx.
- Quartus : to generate synthesis project for Altera.
- ARMadeus SDK : to generate driver project for the Armadeus boards.
Install from subversion tree
- Checkout the source code with following command (subversion is needed):
$ svn co https://periphondemand.svn.sourceforge.net/svnroot/periphondemand/trunk periphondemand $ cd periphondemand/
- Install POD (with root privileges):
$ sudo python setup.py install
Install from package
Note: For this moment, package must be created from svn repository first (see next Chapter). Release will be downloadable soon. |
- Decompress the package PeriphOnDemand-X.X.tar.gz in install directory:
$ cd somewhere/ $ tar -zxvf PeriphOnDemand-X.X.tar.gz
- Walk through periphondemand/ directory:
$ cd periphondemand
- Then install POD with root privilege:
$ sudo python setup.py install
Generate package from subversion tree
- If not already done, checkout the source code with following command (subversion is needed):
$ svn co https://periphondemand.svn.sourceforge.net/svnroot/periphondemand/trunk periphondemand $ cd periphondemand/
- Make python POD distribution:
$ python setup.py sdist
- The POD package can be found in directory dist/