mirror of
https://github.com/hoglet67/AtomBusMon.git
synced 2025-08-08 15:25:15 +00:00
13 lines
248 B
Bash
Executable File
13 lines
248 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Reset the logfile
|
|
rm -f build_250.log
|
|
|
|
# Compile the Xilinx Designs
|
|
./ise_clean.tcl 2>&1 | tee -a build_250.log
|
|
./ise_build.tcl 2>&1 | tee -a build_250.log
|
|
|
|
# Build the firmware release
|
|
./gen_mcs.sh 250 2>&1 | tee -a build_250.log
|
|
|