URL
https://opencores.org/ocsvn/minsoc/minsoc/trunk
Subversion Repositories minsoc
Compare Revisions
- This comparison shows the changes necessary to convert path
/minsoc/trunk
- from Rev 44 to Rev 43
- ↔ Reverse comparison
Rev 44 → Rev 43
/utils/contributions/setup/minsoc-install.sh
7,16 → 7,16
|
# Where should I put the dir. minsoc? |
# ex. /home/conx/Thesis/ |
DIR_TO_INSTALL="" |
DIR_TO_INSTALL="/home/conx/Thesis/tmp/" |
|
# This variable should be set to trunk |
# or to stable. |
VERSION="" |
VERSION="trunk" |
|
# This variable should take one of |
# the following values depending |
# to your system: linux, cygwin, freebsd |
ENV="" |
ENV="linux" |
|
# !!! DO NOT EDIT BELLOW THIS LINE !!! |
# =================================== |
86,10 → 86,8
|
cecho "I will now start to compile everything that's needed"; |
|
cd $DIR_TO_INSTALL/minsoc/sw/utils |
cd ../../sw/utils |
|
echo $PWD |
|
execcmd "Make utils" "make" |
|
cd ../support |
100,7 → 98,10
|
execcmd "Make drivers" "make" |
|
cd ../gpio |
|
execcmd "Make GPIO" "make" |
|
cd ../uart |
|
execcmd "Make UART" "make" |
108,9 → 109,9
# adv_jtag_bridge install |
cd ${DIR_TO_INSTALL}/minsoc/rtl/verilog/adv_debug_sys/Software/adv_jtag_bridge |
|
cecho "Installing FTDI headers! You will be asked to give root pass" |
#cecho "Installing FTDI headers! You will be asked to give root pass" |
|
execcmd "Install FTDI headers" "su -c \"aptitude install libftdi-dev\""; #FIXME |
#execcmd "Install FTDI headers" "su -c \"aptitude install libftdi-dev\""; #FIXME |
|
if [ `grep "INCLUDE_JSP_SERVER=true" Makefile` != "" ] |
then |