URL
https://opencores.org/ocsvn/minsoc/minsoc/trunk
Subversion Repositories minsoc
Compare Revisions
- This comparison shows the changes necessary to convert path
/minsoc/branches/rc-1.0/utils/setup
- from Rev 112 to Rev 113
- ↔ Reverse comparison
Rev 112 → Rev 113
/minsoc-configure.sh
6,7 → 6,8
# ===== CONFIGURATIONS ===== |
# ========================== |
|
export DIR_TO_INSTALL=`pwd` |
SCRIPT_DIR="$( cd -P "$( dirname "$0" )" && pwd )" |
export DIR_TO_INSTALL=`pwd`/../../../ |
# Debug ? |
export DEBUG=0; |
. beautify.sh |
70,4 → 71,4
errormsg "Directory doesn't exist. Please create it"; |
fi; |
|
bash configure.sh |
bash ${SCRIPT_DIR}/configure.sh |
/minsoc-install.sh
6,6 → 6,7
# ===== CONFIGURATIONS ===== |
# ========================== |
MINSOC_SVN_URL=http://opencores.org/ocsvn/minsoc/minsoc/branches/rc-1.0 |
SCRIPT_DIR="$( cd -P "$( dirname "$0" )" && pwd )" |
export DIR_TO_INSTALL=`pwd` |
|
# Debug ? |
226,7 → 227,7
|
|
#Configuring MinSoC, Advanced Debug System and patching OpenRISC |
bash configure.sh |
bash ${SCRIPT_DIR}/configure.sh |
|
|
#Setting-up new variables |
/configure.sh
19,7 → 19,8
|
#Patching OpenRISC Release 1 with Advanced Debug System patch for Watchpoints |
execcmd "cd ${DIR_TO_INSTALL}/minsoc/rtl/verilog/or1200/rtl/verilog" |
execcmd "Patching OpenRISC for watchpoint support" "patch -p0 < ${DIR_TO_INSTALL}/minsoc/rtl/verilog/adv_debug_sys/Patches/OR1200v1/or1200v1_hwbkpt.patch" |
cecho "Patching OpenRISC for watchpoint support" |
patch -p0 < ${DIR_TO_INSTALL}/minsoc/rtl/verilog/adv_debug_sys/Patches/OR1200v1/or1200v1_hwbkpt.patch |
|
|
#Precompiling firmwares |