-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
347 lines (269 loc) · 4.96 KB
/
.gitignore
File metadata and controls
347 lines (269 loc) · 4.96 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
# System files
.bashrc
.bash_logout
.profile
.bash_history
# Editor files
.vscode/
.idea/
*.swp
*.swo
*~
# OS files
.DS_Store
Thumbs.db
# Build artifacts
target/
build/
artifacts/
*.o
*.a
*.so
*.dylib
*.exe
*.dll
*.pdb
# Debug files
*.dSYM/
/debug/
# Test artifacts
**/*.rs.bk
*.orig
# Build logs
build_output.log
# Kernel images
*.bin
*.img
*.iso
images/
# QEMU
*.qcow2
*.ppm
# Coverage reports
coverage/
*.lcov
lcov.info
tarpaulin-report.html
# Documentation build
docs/_build/
docs/html/
# Python
__pycache__/
*.py[cod]
*$py.class
.Python
env/
venv/
.env
# Local memory file (contains project-specific state)
CLAUDE.local.md
WARP.md
# Cargo/Rust user directories
.cargo/
.rustup/
# User configuration directories
.claude/
.config/
.npm/
.claude.json
# Backup archives
/backups/
# GDB history
.gdb_history
# Local user data
.local/
# CI artifacts (downloaded from GitHub Actions)
release-archives/
release-artifacts/
# Cache directories
.cache/
.docker/
# Gemini CLI
.gemini/
.gemini-history
# Boot logs and debug output
*_boot.log
*_boot_debug.log
*.log
# GitHub Actions credentials
gha-creds-*.json
# MCP server databases
*.db
*.sqlite
*.sqlite3
sqlite_mcp_server.db
# Kernel/ELF artifacts
*.elf
*.sym
*.map
# Bootloader/GRUB artifacts
isofiles/
*.grub
OVMF*.fd
*.fd
# Core dumps and memory dumps
core
core.*
vgcore.*
*.dump
*.core
# Profiling
perf.data
perf.data.*
flamegraph.svg
callgrind.out.*
cachegrind.out.*
massif.out.*
*.prof
# Additional editors
.helix/
.zed/
.nvim/
\#*\#
.#*
# Rust tooling
.rust-analyzer/
rust-project.json
# Temporary and backup files
*.tmp
*.temp
*.bak
*.backup
# Serial/UART logs
serial.log
uart.log
# QEMU state files
*.state
*.snapshot
# Git worktrees
worktrees/
# ISO build staging artifacts (grub.cfg template is tracked; build outputs are not)
iso_build/
tools/iso_build/boot/veridian-kernel
# Python build artifacts
*.pyc
# Artifacts directory (CI downloads)
artifacts/
# Node/NPM (if accidentally created)
node_modules/
package-lock.json
# Rust incremental compilation
incremental/
# Kernel binary outputs
kernel.bin
bootimage-*.bin
# LLVM artifacts
*.ll
*.bc
# Assembly intermediates
*.S.tmp
# Linker maps
*.ld.map
# Crash reports
crash-*.txt
hs_err_pid*.log
# macOS artifacts
._*
.Spotlight-V100
.Trashes
# Windows artifacts
desktop.ini
ehthumbs.db
# Linux artifacts
*~
.directory
# Vim session files
Session.vim
*.vim
# JetBrains artifacts
*.iml
out/
# Sublime Text
*.sublime-project
*.sublime-workspace
# Archive files (temporary)
*.tar
*.tar.gz
*.tar.xz
*.zip
*.7z
# Object dump outputs
*.objdump
*.disasm
# mdBook build output
docs/book/book/
# QEMU test output
/tmp/veridian-*
# Disk images for UEFI testing
*.fat
*.efi
# UEFI boot images (generated by tools/build-bootimage.sh)
veridian-uefi.img
veridian-bios.img
# Bootimage builder local build output
tools/bootimage-builder/target/
# Stripped kernel binaries (generated by tools/build-bootimage.sh)
*-stripped
# Rust-analyzer macro expansion artifacts
proc-macro-srv/
# Kernel memory dumps
vmcore*
# GDB server artifacts
.gdbserver
# QEMU OVMF firmware copies
OVMF*.fd
# Agent output files
*.output
# Temporary build/test artifacts
/tmp/
# Cross-compilation and self-hosting toolchain artifacts
# Note: target/ (line 19) already covers target/native-toolchain.tar,
# target/rootfs-build/, target/rootfs.tar, etc.
# Build scripts use /tmp/veridian-* for intermediate work (outside project).
# Cross-toolchain installs to /opt/veridian/toolchain (outside project).
# *.tar (line 230) covers rootfs.tar copied to project root by build-rootfs.sh.
# Userland/coreutils build artifacts (cross-compiled objects)
userland/coreutils/*.o
# Self-host rootfs build artifacts
target/rootfs-build/
target/rootfs-selfhost.tar
# BusyBox native build artifacts
tools/busybox/busybox
tools/busybox/*.o
tools/busybox/build/
# Native compilation rootfs build artifacts
target/rootfs-busybox.tar
# BlockFS disk images (generated by mkfs-blockfs)
target/rootfs-blockfs.img
# mkfs-blockfs tool build artifacts (standalone, not in workspace)
tools/mkfs-blockfs/target/
# BusyBox rootfs build directory (generated by build-busybox-rootfs.sh)
target/rootfs-busybox-build/
# GUI/Desktop screenshots (captured via gvnccapture during testing)
gui-screenshot*.png
gui-screenshot*.ppm
# VNC connection artifacts
.vnc/
# Minimal rootfs staging directory (created for QEMU testing)
target/rootfs/
# KDE Plasma 6 build artifacts (cross-compiled sysroot, not tracked)
userland/kde-sysroot/
userland/qt6-build/
userland/kf6-build/
userland/kwin-build/
userland/plasma-build/
# Phase 10 build artifacts (cross-compiled userland daemons)
userland/pipewire/pipewire-build/
userland/networkmanager/nm-build/
userland/bluez/bluez-build/
userland/udev/udev-build/
userland/akonadi/akonadi-build/
userland/kwin/kwin-src/
# Cross-compilation sysroot and build artifacts (Phase 7-10 KDE pipeline)
target/veridian-sysroot/
target/cross-build/
target/rootfs-kde-staging/
target/rootfs-kde-blockfs.img
# Plan files (Claude Code)
.claude/plans/
a.out