-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitignore
35 lines (28 loc) · 860 Bytes
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# --- VIVADO & SDK common ---
# Folders (and all of their contents) that should be ignored,
# anywhere in the repo
.Xil/
Debug/
Packages/
zedboard_aes.*
# File patterns that should be ignored (journal, log, dump files that
# are created upon Vivado/SDK errors)
*.jou
*.log
*.backup.jou
*.backup.log
*.upgrade_log
*.dmp
vivado_pid*
# --- SDK specific ---
# HW : exclude the entire hw_platform folder, as we'll regenerate
# everything from the .hdf file. Include the bitstream in the .hdf file
# when exporting from Vivado!
# BSP : only keep .cproject, .project, .sdkproject, .system.mss and Makefile
# i.e. the ps7_cortexa9_0 lib files are regenerated automatically
/sdk/standalone_bsp_cpu0/ps7_cortexa9_0/
/sdk/standalone_bsp_cpu1/ps7_cortexa9_1/
# Application : keep everything, except ignore output file patterns
/sdk/**/*.o
/sdk/**/*.d
/sdk/**/*.a