From 72c970fc2011a6896e089e808d89b220018b73ba Mon Sep 17 00:00:00 2001 From: Renat Nurgaliyev Date: Tue, 28 Apr 2026 14:31:37 +0200 Subject: [PATCH] Ignore local build artifacts --- .gitignore | 23 +++++++++++++++++++++++ Software/.gitignore | 21 +++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 Software/.gitignore diff --git a/.gitignore b/.gitignore index 156b2d2..0785d4e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,25 @@ # Local Codex state .codex + +# OS / filesystem junk +.DS_Store +Thumbs.db +desktop.ini + +# Editor / IDE state +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# Vivado scratch dropped in the current working directory whenever Vivado is +# invoked from anywhere other than FPGA/vivado/ (e.g. running create_project.tcl +# from the repo root). +.Xil/ +vivado*.jou +vivado*.log +vivado*.backup.* +webtalk*.jou +webtalk*.log +usage_statistics_webtalk.* diff --git a/Software/.gitignore b/Software/.gitignore new file mode 100644 index 0000000..527285f --- /dev/null +++ b/Software/.gitignore @@ -0,0 +1,21 @@ +# Bare-metal RISC-V build artifacts (riscv64-unknown-elf-gcc / ld / objcopy). +# Source (.c, .S, .h, *.ld linker scripts, Makefiles) stays tracked. + +# Object / archive / dependency files +*.o +*.a +*.d + +# Linked outputs +*.elf +*.bin +*.hex +*.map +*.lst +*.dis +*.dump + +# Common build directories +build/ +obj/ +out/