-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
32 changed files
with
4,777 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
|
||
|
||
su | ||
yum groupinstall 'Electronic Lab' | ||
yum install perl-XML-LibXML | ||
yum install wget | ||
yum install patch | ||
|
||
(logout from root) | ||
|
||
cd ../crasm | ||
make all | ||
|
||
|
||
chmod 755 ../../bin/* ;\ | ||
mkdir ~/bin;\ | ||
cp ../../bin/* ~/bin;\ | ||
|
||
cd socgen | ||
make build_soc | ||
make run_sims | ||
make build_fgpas ( if you have xilinx webpack 12.3 installed) | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
SHELL=/bin/sh | ||
MAKE=make | ||
CUR_DIR=$(shell pwd) | ||
home=$(CUR_DIR)/.. | ||
|
||
all: install | ||
|
||
|
||
.PHONY install: | ||
install: | ||
(\ | ||
chmod 755 ../../bin/* ;\ | ||
mkdir ~/bin;\ | ||
cp ../../bin/* ~/bin;\ | ||
sudo apt-get install -y subversion;\ | ||
sudo apt-get install -y cvs;\ | ||
sudo apt-get install -y git;\ | ||
sudo apt-get install -y k3b;\ | ||
sudo apt-get install -y geda;\ | ||
sudo apt-get install -y emacs;\ | ||
sudo apt-get install -y seamonkey;\ | ||
sudo apt-get install -y libverilog-perl;\ | ||
sudo apt-get install -y libxml-libxml-perl;\ | ||
sudo apt-get install -y iverilog;\ | ||
sudo apt-get install -y covered;\ | ||
sudo apt-get install -y xutils-dev;\ | ||
sudo apt-get install -y gputils;\ | ||
sudo apt-get install -y gtkterm;\ | ||
sudo apt-get install -y gtkwave;\ | ||
sudo apt-get install -y eclipse;\ | ||
sudo apt-get install -y perl-tk;\ | ||
sudo apt-get install -y perl-doc;\ | ||
sudo apt-get install -y texinfo;\ | ||
sudo apt-get install -y libncurses5-dev;\ | ||
sudo apt-get install -y build-essential;\ | ||
sudo apt-get install -y tkdiff;\ | ||
sudo apt-get install -y librxtx-java;\ | ||
sudo apt-get install -y libmpc2;\ | ||
sudo apt-get install -y verilator;\ | ||
) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
=================================================== | ||
Installation steps to run socgen on Ubuntu 10.10 | ||
=================================================== | ||
|
||
Install ubuntu 10.10 | ||
|
||
sudo apt-get install -y subversion; | ||
|
||
svn co --username <<>> --password <<>> http://opencores.org/ocsvn/socgen/socgen/trunk socgen;\ | ||
|
||
cd socgen/tools/install/Ubuntu_10.10 | ||
|
||
make install ( adds ~/bin into your $PATH) | ||
|
||
|
||
cd socgen/tools/JtagProgrammer | ||
|
||
make install ( adds urjtag tools) | ||
|
||
reboot | ||
|
||
cd socgen | ||
|
||
make build_soc | ||
|
||
make run_sims | ||
|
||
make build_fpgas (if you have xilinx webpack 12.4 installed) | ||
|
||
--------------------------- | ||
|
||
Enable HW drivers | ||
update | ||
Install make composite | ||
Install_cmp make crasm, or-32 msp430 | ||
install fpga |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
SHELL=/bin/sh | ||
MAKE=make | ||
CUR_DIR=$(shell pwd) | ||
home=$(CUR_DIR)/.. | ||
|
||
all: install | ||
|
||
|
||
.PHONY install: | ||
install: | ||
(\ | ||
mkdir ~/bin;\ | ||
cp ../../bin/* ~/bin;\ | ||
chmod 755 ~/bin/* ;\ | ||
sudo apt-get install -y subversion;\ | ||
sudo apt-get install -y libverilog-perl;\ | ||
sudo apt-get install -y iverilog;\ | ||
sudo apt-get install -y covered;\ | ||
sudo apt-get install -y xutils-dev;\ | ||
sudo apt-get install -y gputils;\ | ||
sudo apt-get install -y gtkterm;\ | ||
sudo apt-get install -y gtkwave;\ | ||
sudo apt-get install -y eclipse;\ | ||
sudo apt-get install -y perl-tk;\ | ||
sudo apt-get install -y perl-doc;\ | ||
sudo apt-get install -y texinfo;\ | ||
sudo apt-get install -y libncurses5-dev;\ | ||
sudo apt-get install -y build-essential;\ | ||
sudo apt-get install -y tkdiff;\ | ||
sudo apt-get install -y librxtx-java;\ | ||
) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
=================================================== | ||
Installation steps to run socgen on Ubuntu 10.4 | ||
=================================================== | ||
|
||
Install ubuntu 10.04 | ||
|
||
sudo apt-get install -y subversion; | ||
|
||
svn co --username <<>> --password <<>> http://opencores.org/ocsvn/socgen/socgen/trunk socgen;\ | ||
|
||
cd socgen/tools/install/Ubuntu_10.4 | ||
|
||
make install | ||
|
||
reboot | ||
|
||
build_cmp socgen | ||
|
||
cd socgen_cmp | ||
|
||
make run_sims | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
SHELL=/bin/sh | ||
MAKE=make | ||
CUR_DIR=$(shell pwd) | ||
home=$(CUR_DIR)/.. | ||
|
||
all: install | ||
|
||
|
||
.PHONY install: | ||
install: | ||
(\ | ||
chmod 755 ../../bin/* ;\ | ||
chmod 755 ../../sys/* ;\ | ||
mkdir ~/bin;\ | ||
cp ../../bin/* ~/bin;\ | ||
sudo apt-get install -y subversion;\ | ||
sudo apt-get install -y cvs;\ | ||
sudo apt-get install -y git;\ | ||
sudo apt-get install -y k3b;\ | ||
sudo apt-get install -y geda;\ | ||
sudo apt-get install -y emacs;\ | ||
sudo apt-get install -y seamonkey;\ | ||
sudo apt-get install -y libverilog-perl;\ | ||
sudo apt-get install -y libxml-libxml-perl;\ | ||
sudo apt-get install -y iverilog;\ | ||
sudo apt-get install -y covered;\ | ||
sudo apt-get install -y xutils-dev;\ | ||
sudo apt-get install -y gputils;\ | ||
sudo apt-get install -y gtkterm;\ | ||
sudo apt-get install -y gtkwave;\ | ||
sudo apt-get install -y eclipse;\ | ||
sudo apt-get install -y perl-tk;\ | ||
sudo apt-get install -y perl-doc;\ | ||
sudo apt-get install -y texinfo;\ | ||
sudo apt-get install -y libncurses5-dev;\ | ||
sudo apt-get install -y build-essential;\ | ||
sudo apt-get install -y tkdiff;\ | ||
sudo apt-get install -y librxtx-java;\ | ||
sudo apt-get install -y libmpc2;\ | ||
sudo apt-get install -y verilator;\ | ||
sudo apt-get install -y crasm;\ | ||
sudo apt-get install -y texlive;\ | ||
sudo apt-get install -y asciidoc;\ | ||
) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
=================================================== | ||
Installation steps to run socgen on Ubuntu 10.10 | ||
=================================================== | ||
|
||
Install ubuntu 10.10 | ||
|
||
sudo apt-get install -y subversion; | ||
|
||
svn co --username <<>> --password <<>> http://opencores.org/ocsvn/socgen/socgen/trunk socgen;\ | ||
|
||
cd socgen/tools/install/Ubuntu_10.10 | ||
|
||
make install ( adds ~/bin into your $PATH) | ||
|
||
|
||
cd socgen/tools/JtagProgrammer | ||
|
||
make install ( adds urjtag tools) | ||
|
||
reboot | ||
|
||
cd socgen | ||
|
||
make build_soc | ||
|
||
make run_sims | ||
|
||
make build_fpgas (if you have xilinx webpack 12.4 installed) | ||
|
||
--------------------------- | ||
|
||
Enable HW drivers | ||
update | ||
Install make composite | ||
Install_cmp make crasm, or-32 msp430 | ||
install fpga |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
SHELL=/bin/sh | ||
MAKE=make | ||
CUR_DIR=$(shell pwd) | ||
home=$(CUR_DIR)/.. | ||
|
||
all: install | ||
|
||
|
||
.PHONY install: | ||
install: | ||
(\ | ||
chmod 755 ../../bin/* ;\ | ||
chmod 755 ../../sys/* ;\ | ||
sudo apt-get install -y subversion;\ | ||
sudo apt-get install -y cvs;\ | ||
sudo apt-get install -y git;\ | ||
sudo apt-get install -y k3b;\ | ||
sudo apt-get install -y geda;\ | ||
sudo apt-get install -y emacs;\ | ||
sudo apt-get install -y seamonkey;\ | ||
sudo apt-get install -y libverilog-perl;\ | ||
sudo apt-get install -y libxml-libxml-perl;\ | ||
sudo apt-get install -y iverilog;\ | ||
sudo apt-get install -y covered;\ | ||
sudo apt-get install -y xutils-dev;\ | ||
sudo apt-get install -y gputils;\ | ||
sudo apt-get install -y gtkterm;\ | ||
sudo apt-get install -y gtkwave;\ | ||
sudo apt-get install -y perl-tk;\ | ||
sudo apt-get install -y perl-doc;\ | ||
sudo apt-get install -y texinfo;\ | ||
sudo apt-get install -y libncurses5-dev;\ | ||
sudo apt-get install -y build-essential;\ | ||
sudo apt-get install -y tkdiff;\ | ||
sudo apt-get install -y librxtx-java;\ | ||
sudo apt-get install -y libmpc2;\ | ||
sudo apt-get install -y verilator;\ | ||
sudo apt-get install -y crasm;\ | ||
sudo apt-get install -y xa65;\ | ||
sudo apt-get install -y texlive;\ | ||
sudo apt-get install -y asciidoc;\ | ||
sudo apt-get install -y bison;\ | ||
sudo apt-get install -y flex;\ | ||
sudo apt-get install -y gperf;\ | ||
sudo apt-get install -y sdcc;\ | ||
sudo apt-get install -y ghdl;\ | ||
sudo apt-get install -y csh;\ | ||
sudo apt-get install -y zlibc;\ | ||
sudo apt-get install -y zlib1g-dev;\ | ||
sudo apt-get install -y libx11-dev;\ | ||
sudo apt-get install -y gitk;\ | ||
sudo apt-get install -y git-gui;\ | ||
sudo apt-get install -y git-doc;\ | ||
sudo apt-get install -y git-core;\ | ||
sudo apt-get install -y gcc-4.4;\ | ||
sudo apt-get install -y texinfo;\ | ||
sudo apt-get install -y patch;\ | ||
sudo apt-get install -y libncurses5-dev;\ | ||
sudo apt-get install -y libusb-dev;\ | ||
sudo apt-get install -y libreadline6-dev;\ | ||
sudo apt-get install -y tex-info;\ | ||
sudo apt-get install -y texlive;\ | ||
sudo apt-get install -y libxml-simple-perl;\ | ||
sudo apt-get install -y autoconf;\ | ||
sudo apt-get install -y autopoint;\ | ||
sudo apt-get install -y libtool;\ | ||
sudo apt-get install -y qt4-qmake;\ | ||
sudo apt-get install -y qt4-designer;\ | ||
sudo apt-get install -y virtualbox-qt;\ | ||
sudo apt-get install -y quilt;\ | ||
) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
=================================================== | ||
Installation steps to run socgen on Ubuntu 10.10 | ||
=================================================== | ||
|
||
Install ubuntu 10.10 | ||
|
||
sudo apt-get install -y subversion; | ||
|
||
svn co --username <<>> --password <<>> http://opencores.org/ocsvn/socgen/socgen/trunk socgen;\ | ||
|
||
cd socgen/tools/install/Ubuntu_10.10 | ||
|
||
make install ( adds ~/bin into your $PATH) | ||
|
||
|
||
cd socgen/tools/JtagProgrammer | ||
|
||
make install ( adds urjtag tools) | ||
|
||
reboot | ||
|
||
cd socgen | ||
|
||
make build_soc | ||
|
||
make run_sims | ||
|
||
make build_fpgas (if you have xilinx webpack 12.4 installed) | ||
|
||
--------------------------- | ||
|
||
Enable HW drivers | ||
update | ||
Install make composite | ||
Install_cmp make crasm, or-32 msp430 | ||
install fpga |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
SHELL=/bin/sh | ||
MAKE=make | ||
CUR_DIR=$(shell pwd) | ||
home=$(CUR_DIR)/.. | ||
|
||
all: install | ||
|
||
|
||
.PHONY install: | ||
install: | ||
(\ | ||
cp -r bin ~;\ | ||
cp dot_profile ~/.profile;\ | ||
sudo apt-get install -y emacs23;\ | ||
sudo apt-get install -y k3b;\ | ||
sudo apt-get install -y cvs;\ | ||
sudo apt-get install -y subversion;\ | ||
sudo apt-get install -y git;\ | ||
sudo apt-get install -y perl-tk\ | ||
sudo apt-get install -y iverilog;\ | ||
sudo apt-get install -y verilator;\ | ||
sudo apt-get install -y covered;\ | ||
sudo apt-get install -y gtkterm;\ | ||
sudo apt-get install -y gtkwave;\ | ||
sudo apt-get install -y crasm;\ | ||
sudo apt-get install -y libverilog-perl;\ | ||
sudo apt-get install -y libxml-libxml-perl;\ | ||
) | ||
|
||
|
Oops, something went wrong.