URL
https://opencores.org/ocsvn/openmsp430/openmsp430/trunk
Subversion Repositories openmsp430
[/] [openmsp430/] [trunk/] [fpga/] [xilinx_avnet_lx9microbard/] [synthesis/] [xilinx/] [2_generate_prom_file.sh] - Rev 176
Go to most recent revision | Compare with Previous | Blame | View Log
#!/bin/bash ############################################################################### # # # Xilinx RAM update script for LINUX # # # ############################################################################### ############################################################################### # Parameter Check # ############################################################################### EXPECTED_ARGS=1 if [ $# -ne $EXPECTED_ARGS ]; then echo "" echo "ERROR : wrong number of arguments" echo "USAGE : ./2_generate_prom_file.sh <bitstream name>" echo "EXAMPLE : ./2_generate_prom_file.sh leds" echo "" echo "AVAILABLE TESTS:" for fullfile in ./bitstreams/*.bit ; do filename=$(basename "$fullfile") filename="${filename%.*}" echo " - $filename" done echo "" exit 1 fi ############################################################################### # Check if the required files exist # ############################################################################### bitstreamfile=./bitstreams/$1.bit; if [ ! -e $bitstreamfile ]; then echo "Specified bitstream file doesn't exist: $bitstreamfile" exit 1 fi ############################################################################### # Update FPGA Bitstream # ############################################################################### # Move to the XFLOW workspace cd ./WORK # Copy bitstream in working directory cp -f ../bitstreams/$1.bit . # Copy the impact script and update it cp ../scripts/impact_generate_prom_file.batch ./impact_generate_prom_file.batch sed -i "s/BITSTREAM_NAME/$1/g" ./impact_generate_prom_file.batch # Create PROM image impact -batch ./impact_generate_prom_file.batch # Copy new PROM image in the proper directory cp -f ./$1.mcs ../bitstreams # Return to the root directory cd ../
Go to most recent revision | Compare with Previous | Blame | View Log