URL
https://opencores.org/ocsvn/minsoc/minsoc/trunk
Subversion Repositories minsoc
Compare Revisions
- This comparison shows the changes necessary to convert path
/
- from Rev 96 to Rev 97
- ↔ Reverse comparison
Rev 96 → Rev 97
/minsoc/trunk/backend/spartan3a_dsp_kit/configure
38,20 → 38,28
fi |
|
echo "" |
echo "Configuring SoC board's specific files for firmware compilation, " |
echo "testbench generation and synthesis." |
echo "Firmware and testbench looks for board specific files under minsoc/backend." |
echo "Synthesis work under minsoc/syn." |
echo "This script sets up the SoC for simulations and synthesis." |
echo "" |
echo "In order to do so, SoC board's specific files for firmware compilation, " |
echo "testbench generation and synthesis are configured." |
echo "Firmware and testbench looks for board specific files under $BACKEND_DIR." |
echo "Synthesis work under $SYN_DIR." |
echo "" |
echo "" |
|
echo "Generating project files for simulation and synthesis..." |
make -C $MINSOC_DIR/prj |
echo "Generation complete." |
echo "__________________________________________________________________________" |
echo "" |
|
if [ $CONSTRAINT_FILE == 'NONE' ] |
then |
echo "Skipping synthesis preparation. Standard implementation can only be simulated." |
else |
echo "Device part for files under minsoc/prj/xilinx will be patched and stored " |
echo "Device part for files under $SYNSRC_DIR will be patched and stored " |
echo "temporarily." |
echo "Afterwards, they are copied to minsoc/syn/buildSupport." |
echo "Afterwards, they are copied to $SYNSUPPORT_DIR." |
echo "__________________________________________________________________________" |
echo "" |
for file in "${SYN_FILES[@]}" |
64,8 → 72,8
rm TMPFILE |
done |
|
echo "Updating Makefile file..." |
echo "Copying Makefile to synthesis directory..." |
echo "Updating Makefile file under $MAKEFILE_DIR..." |
echo "Copying Makefile to synthesis directory, $SYN_DIR..." |
echo "" |
sed "s/$FIND_PART/$DEVICE_PART/g" $MAKEFILE_DIR/$MAKEFILE > TMPFILE |
sed "s/$FIND_CONSTRAINT/$CONSTRAINT_FILE/g" TMPFILE > TMPFILE2 && mv TMPFILE2 $SYN_DIR/$MAKEFILE |
75,7 → 83,7
echo "" |
|
|
echo "Copying board specific SoC files to backend directory." |
echo "Copying board specific SoC files from $BOARD_DIR to $BACKEND_DIR directory." |
echo "__________________________________________________________________________" |
echo "" |
for file in "${BOARD_FILES[@]}" |
/minsoc/trunk/backend/std/configure
38,20 → 38,28
fi |
|
echo "" |
echo "Configuring SoC board's specific files for firmware compilation, " |
echo "testbench generation and synthesis." |
echo "Firmware and testbench looks for board specific files under minsoc/backend." |
echo "Synthesis work under minsoc/syn." |
echo "This script sets up the SoC for simulations and synthesis." |
echo "" |
echo "In order to do so, SoC board's specific files for firmware compilation, " |
echo "testbench generation and synthesis are configured." |
echo "Firmware and testbench looks for board specific files under $BACKEND_DIR." |
echo "Synthesis work under $SYN_DIR." |
echo "" |
echo "" |
|
echo "Generating project files for simulation and synthesis..." |
make -C $MINSOC_DIR/prj |
echo "Generation complete." |
echo "__________________________________________________________________________" |
echo "" |
|
if [ $CONSTRAINT_FILE == 'NONE' ] |
then |
echo "Skipping synthesis preparation. Standard implementation can only be simulated." |
else |
echo "Device part for files under minsoc/prj/xilinx will be patched and stored " |
echo "Device part for files under $SYNSRC_DIR will be patched and stored " |
echo "temporarily." |
echo "Afterwards, they are copied to minsoc/syn/buildSupport." |
echo "Afterwards, they are copied to $SYNSUPPORT_DIR." |
echo "__________________________________________________________________________" |
echo "" |
for file in "${SYN_FILES[@]}" |
64,8 → 72,8
rm TMPFILE |
done |
|
echo "Updating Makefile file..." |
echo "Copying Makefile to synthesis directory..." |
echo "Updating Makefile file under $MAKEFILE_DIR..." |
echo "Copying Makefile to synthesis directory, $SYN_DIR..." |
echo "" |
sed "s/$FIND_PART/$DEVICE_PART/g" $MAKEFILE_DIR/$MAKEFILE > TMPFILE |
sed "s/$FIND_CONSTRAINT/$CONSTRAINT_FILE/g" TMPFILE > TMPFILE2 && mv TMPFILE2 $SYN_DIR/$MAKEFILE |
75,7 → 83,7
echo "" |
|
|
echo "Copying board specific SoC files to backend directory." |
echo "Copying board specific SoC files from $BOARD_DIR to $BACKEND_DIR directory." |
echo "__________________________________________________________________________" |
echo "" |
for file in "${BOARD_FILES[@]}" |
/minsoc/trunk/backend/altera_3c25_board/configure
43,20 → 43,28
fi |
|
echo "" |
echo "Configuring SoC board's specific files for firmware compilation, " |
echo "testbench generation and synthesis." |
echo "Firmware and testbench looks for board specific files under minsoc/backend." |
echo "Synthesis work under minsoc/syn." |
echo "This script sets up the SoC for simulations and synthesis." |
echo "" |
echo "In order to do so, SoC board's specific files for firmware compilation, " |
echo "testbench generation and synthesis are configured." |
echo "Firmware and testbench looks for board specific files under $BACKEND_DIR." |
echo "Synthesis work under $SYN_DIR." |
echo "" |
echo "" |
|
echo "Generating project files for simulation and synthesis..." |
make -C $MINSOC_DIR/prj |
echo "Generation complete." |
echo "__________________________________________________________________________" |
echo "" |
|
if [ $CONSTRAINT_FILE == 'NONE' ] |
then |
echo "Skipping synthesis preparation. Standard implementation can only be simulated." |
else |
echo "Device part and family for qsf file under $MAKEFILE_DIR will patched and stored " |
echo "Device part and family for files under $SYNSRC_DIR will patched and stored " |
echo "temporarily." |
echo "Afterwards, they are copied to minsoc/syn/buildSupport." |
echo "Afterwards, they are copied to $SYNSUPPORT_DIR." |
echo "__________________________________________________________________________" |
echo "" |
sed "s/$FIND_PART/$DEVICE_PART/g" $MAKEFILE_DIR/$PROJECT_FILE > TMPFILE |
77,11 → 85,11
echo "Generated quartus settings file in $SYNSUPPORT_DIR/$PROJECT_FILE" |
echo "" |
|
echo "Copying Makefile to synthesis directory..." |
echo "Copying Makefile from $MAKEFILE_DIR to synthesis directory, $SYN_DIR..." |
cp $MAKEFILE_DIR/$MAKEFILE $SYN_DIR/$MAKEFILE |
echo "" |
|
echo "Copying board specific SoC files to backend directory." |
echo "Copying board specific SoC files from $BOARD_DIR to $BACKEND_DIR directory." |
echo "__________________________________________________________________________" |
echo "" |
for file in "${BOARD_FILES[@]}" |
/minsoc/trunk/backend/spartan3e_starter_kit/configure
56,20 → 56,28
#~NON STANDARD SCRIPT PART |
|
echo "" |
echo "Configuring SoC board's specific files for firmware compilation, " |
echo "testbench generation and synthesis." |
echo "Firmware and testbench looks for board specific files under minsoc/backend." |
echo "Synthesis work under minsoc/syn." |
echo "This script sets up the SoC for simulations and synthesis." |
echo "" |
echo "In order to do so, SoC board's specific files for firmware compilation, " |
echo "testbench generation and synthesis are configured." |
echo "Firmware and testbench looks for board specific files under $BACKEND_DIR." |
echo "Synthesis work under $SYN_DIR." |
echo "" |
echo "" |
|
echo "Generating project files for simulation and synthesis..." |
make -C $MINSOC_DIR/prj |
echo "Generation complete." |
echo "__________________________________________________________________________" |
echo "" |
|
if [ $CONSTRAINT_FILE == 'NONE' ] |
then |
echo "Skipping synthesis preparation. Standard implementation can only be simulated." |
else |
echo "Device part for files under minsoc/prj/xilinx will be patched and stored " |
echo "Device part for files under $SYNSRC_DIR will be patched and stored " |
echo "temporarily." |
echo "Afterwards, they are copied to minsoc/syn/buildSupport." |
echo "Afterwards, they are copied to $SYNSUPPORT_DIR." |
echo "__________________________________________________________________________" |
echo "" |
for file in "${SYN_FILES[@]}" |
82,8 → 90,8
rm TMPFILE |
done |
|
echo "Updating Makefile file..." |
echo "Copying Makefile to synthesis directory..." |
echo "Updating Makefile file under $MAKEFILE_DIR..." |
echo "Copying Makefile to synthesis directory, $SYN_DIR..." |
echo "" |
sed "s/$FIND_PART/$DEVICE_PART/g" $MAKEFILE_DIR/$MAKEFILE > TMPFILE |
sed "s/$FIND_CONSTRAINT/$CONSTRAINT_FILE/g" TMPFILE > TMPFILE2 && mv TMPFILE2 $SYN_DIR/$MAKEFILE |
93,7 → 101,7
echo "" |
|
|
echo "Copying board specific SoC files to backend directory." |
echo "Copying board specific SoC files from $BOARD_DIR to $BACKEND_DIR directory." |
echo "__________________________________________________________________________" |
echo "" |
for file in "${BOARD_FILES[@]}" |
/minsoc/trunk/backend/spartan3e_starter_kit_eth/configure
57,20 → 57,28
#~NON STANDARD SCRIPT PART |
|
echo "" |
echo "Configuring SoC board's specific files for firmware compilation, " |
echo "testbench generation and synthesis." |
echo "Firmware and testbench looks for board specific files under minsoc/backend." |
echo "Synthesis work under minsoc/syn." |
echo "This script sets up the SoC for simulations and synthesis." |
echo "" |
echo "In order to do so, SoC board's specific files for firmware compilation, " |
echo "testbench generation and synthesis are configured." |
echo "Firmware and testbench looks for board specific files under $BACKEND_DIR." |
echo "Synthesis work under $SYN_DIR." |
echo "" |
echo "" |
|
echo "Generating project files for simulation and synthesis..." |
make -C $MINSOC_DIR/prj |
echo "Generation complete." |
echo "__________________________________________________________________________" |
echo "" |
|
if [ $CONSTRAINT_FILE == 'NONE' ] |
then |
echo "Skipping synthesis preparation. Standard implementation can only be simulated." |
else |
echo "Device part for files under minsoc/prj/xilinx will be patched and stored " |
echo "Device part for files under $SYNSRC_DIR will be patched and stored " |
echo "temporarily." |
echo "Afterwards, they are copied to minsoc/syn/buildSupport." |
echo "Afterwards, they are copied to $SYNSUPPORT_DIR." |
echo "__________________________________________________________________________" |
echo "" |
for file in "${SYN_FILES[@]}" |
83,8 → 91,8
rm TMPFILE |
done |
|
echo "Updating Makefile file..." |
echo "Copying Makefile to synthesis directory..." |
echo "Updating Makefile file under $MAKEFILE_DIR..." |
echo "Copying Makefile to synthesis directory, $SYN_DIR..." |
echo "" |
sed "s/$FIND_PART/$DEVICE_PART/g" $MAKEFILE_DIR/$MAKEFILE > TMPFILE |
sed "s/$FIND_CONSTRAINT/$CONSTRAINT_FILE/g" TMPFILE > TMPFILE2 && mv TMPFILE2 $SYN_DIR/$MAKEFILE |
94,7 → 102,7
echo "" |
|
|
echo "Copying board specific SoC files to backend directory." |
echo "Copying board specific SoC files from $BOARD_DIR to $BACKEND_DIR directory." |
echo "__________________________________________________________________________" |
echo "" |
for file in "${BOARD_FILES[@]}" |
/minsoc/trunk/prj/altera/altera_virtual_jtag.prj
File deleted
/minsoc/trunk/prj/altera/minsoc_top.prj
File deleted
/minsoc/trunk/prj/altera/jtag_top.prj
File deleted
/minsoc/trunk/prj/altera/or1200_top.prj
File deleted
/minsoc/trunk/prj/altera/uart_top.prj
File deleted
/minsoc/trunk/prj/altera/ethmac.prj
File deleted
/minsoc/trunk/prj/altera/adbg_top.prj
File deleted
/minsoc/trunk/prj/altera/minsoc_bench.prj
File deleted
/minsoc/trunk/prj/sim/or1200_top.src
File deleted
/minsoc/trunk/prj/sim/ethmac.src
File deleted
/minsoc/trunk/prj/sim/jtag_top.src
File deleted
/minsoc/trunk/prj/sim/uart_top.src
File deleted
/minsoc/trunk/prj/sim/minsoc_top.src
File deleted
/minsoc/trunk/prj/sim/adbg_top.src
File deleted
/minsoc/trunk/prj/sim/minsoc.src
File deleted
/minsoc/trunk/prj/xilinx/or1200_top.xst
File deleted
/minsoc/trunk/prj/xilinx/minsoc_top.prj
File deleted
/minsoc/trunk/prj/xilinx/jtag_top.prj
File deleted
/minsoc/trunk/prj/xilinx/jtag_top.xst
File deleted
/minsoc/trunk/prj/xilinx/ethmac.xst
File deleted
/minsoc/trunk/prj/xilinx/or1200_top.prj
File deleted
/minsoc/trunk/prj/xilinx/uart_top.prj
File deleted
/minsoc/trunk/prj/xilinx/uart_top.xst
File deleted
/minsoc/trunk/prj/xilinx/ethmac.prj
File deleted
/minsoc/trunk/prj/xilinx/adbg_top.prj
File deleted
/minsoc/trunk/prj/xilinx/adbg_top.xst
File deleted
/minsoc/trunk/prj/xilinx/minsoc_top.xst
File deleted