Difference between revisions of "POD installation guide"
From ArmadeusWiki
(New page: {{Under_Construction}} <strike> Before using POD you must verify that Python is installed on your computer. <source lang="bash"> $ python Python 2.5.2 (r252:60911, Jul 31 2008, 17:28:52)...) |
|||
| Line 1: | Line 1: | ||
| − | + | == prerequisites == | |
| + | === mandatory === | ||
| + | * python : POD is written in python. | ||
| + | === optional === | ||
| + | * ghdl, gtkwave : it's not mandatory, POD can generate VHDL testbench ready for ghdl simulator, but it's standard VHDL then another simulator should work. | ||
| + | * ISE Webpack : to generate synthesis project for xilinx. | ||
| + | * Quartus : to generate synthesis project for altera. | ||
| + | * ARMadeus : to generate driver project for armadeus board. | ||
| − | + | == install from package == | |
| − | + | Decompress the package PeriphOnDemand-X.X.tar.gz in install directory: | |
| − | < | + | <pre class="host"> |
| − | $ | + | $ tar -zxvf PeriphOnDemand-X.X.tar.gz |
| − | + | </pre> | |
| − | + | ||
| − | + | ||
| − | + | ||
| − | </ | + | |
| − | + | Walk through periphondemand/ directory: | |
| − | + | <pre class="host"> | |
| + | $ cd periphondemand | ||
| + | </pre> | ||
| − | + | Then install POD with root privilege: | |
| − | + | <pre class="host"> | |
| + | root$> python setup.py install | ||
| + | </pre> | ||
| − | + | == generate package from subversion tree == | |
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | Checkout the source code with command (subversion is needed): | |
| − | < | + | <pre class="host"> |
| − | + | $svn co https://periphondemand.svn.sourceforge.net/svnroot/periphondemand periphondemand | |
| − | </ | + | </pre> |
| − | + | Make python POD distribution: | |
| − | + | <pre class="host"> | |
| − | </ | + | $python setup.py sdist |
| + | </pre> | ||
| + | |||
| + | The POD package can be found in directory dist/ | ||
Revision as of 16:45, 24 April 2009
Contents
prerequisites
mandatory
- python : POD is written in python.
optional
- ghdl, gtkwave : it's not mandatory, POD can generate VHDL testbench ready for ghdl simulator, but it's standard VHDL then another simulator should work.
- ISE Webpack : to generate synthesis project for xilinx.
- Quartus : to generate synthesis project for altera.
- ARMadeus : to generate driver project for armadeus board.
install from package
Decompress the package PeriphOnDemand-X.X.tar.gz in install directory:
$ tar -zxvf PeriphOnDemand-X.X.tar.gz
Walk through periphondemand/ directory:
$ cd periphondemand
Then install POD with root privilege:
root$> python setup.py install
generate package from subversion tree
Checkout the source code with command (subversion is needed):
$svn co https://periphondemand.svn.sourceforge.net/svnroot/periphondemand periphondemand
Make python POD distribution:
$python setup.py sdist
The POD package can be found in directory dist/