Advertisement
cncbasher

fpga-build

Aug 28th, 2011
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. # To build all bitfiles, pinfiles, and xmlfiles:
  4. # . ~/Xilinx92i/settings.sh # depends on ISE version and install path
  5. # make -j4 # -j setting depends on RAM and # CPU cores
  6. # On my system (quad core AMD Phenom 9600) building the full set of
  7. # firmwares took about 75 minutes wall time with the -j4 setting shown
  8. # above.
  9.  
  10. # To build just a subset of firmwares, edit 'firmwares.txt' before
  11. # building. For example, to build just the 'SV12' firmware for the '5i23' card,
  12. # put just this line in 'firmwares.txt':
  13. # i23 SV12
  14. XILINX=/home/dave/xilinx10/ISE
  15. source ~/xilinx/ISE/settings32.sh
  16. make
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement