Reversing the earlier decision to track fb/ in git (made when first setting up the directory for item 4.3.2). Captain Bob: these are disposable screenshots for eyeballing framebuffer output during Console work, never meant to be committed. Removed from git tracking (git rm --cached) and added to .gitignore; files that still exist locally are untouched, deletions already made locally are left as-is. Also fixes item 4.3.4's amd64-only blind spot found in the process: aarch64/riscv64 had no framebuffer device at all (GOP: protocol not found) -- the "all three architectures boot clean" checks run all session were REPL/dict_hash parity, a different thing from GOP presence, and conflating the two was an error. Added -device ramfb (EDK2's firmware-only GOP framebuffer) to both architectures' qemu targets in Makefile.starkernel. Both now report GOP: linear framebuffer found at 800x600; cube rendering verified correct on both (screenshots not committed, per the untrack above -- verified visually this session). Standard three-arch acceptance boot re-run afterward, all clean, dict_hash identical and unchanged from before this fix.
71 lines
1.7 KiB
Plaintext
71 lines
1.7 KiB
Plaintext
# build artifacts
|
|
/build/
|
|
target/
|
|
out/
|
|
# Formal documentation build output — PDFs are committed artifacts
|
|
# LaTeX intermediates are excluded; PDFs are tracked with git add -f
|
|
docs/formal/build/**
|
|
!docs/formal/build/**/*.pdf
|
|
# Doxygen generated output (PDF artifact committed separately)
|
|
docs/formal/doxygen/
|
|
docs/api/
|
|
|
|
# IDE crap
|
|
.idea/
|
|
.vscode/
|
|
*.iml
|
|
|
|
# generated headers
|
|
include/version.h
|
|
|
|
# bundles / archives
|
|
*.bundle
|
|
*.tar
|
|
*.tar.gz
|
|
*.zip
|
|
|
|
# experiment scratch outputs ONLY (keep raw CSVs!)
|
|
experiments/**/results/tmp/
|
|
experiments/**/results/cache/
|
|
experiments/**/results/*.log
|
|
|
|
# OS junk
|
|
.DS_Store
|
|
Thumbs.db
|
|
qemu.log
|
|
|
|
# Framebuffer/Console screendumps — throwaway local verification images,
|
|
# never meant to be committed (Captain Bob, 2026-08-07)
|
|
fb/
|
|
|
|
# Serial acceptance logs and session directories are audit artifacts — tracked in git
|
|
# logs/ and logs2/ are intentionally NOT ignored
|
|
# EXCEPTION: ECW-trace sessions generate 500-638MB logs that exceed GitHub's 100MB
|
|
# limit. Those specific sessions are excluded here.
|
|
logs/20260625-183218/
|
|
logs/20260625-183958/
|
|
logs/20260625-184714/
|
|
logs/20260625-190541/
|
|
|
|
# Retired data directories (replaced by experiments/bare_metal/)
|
|
doe/
|
|
csv/
|
|
|
|
# Kconfig — vendored tool build products (tools/kconfig/README.md) and
|
|
# generated per-arch config output (lives under build/, already ignored
|
|
# above, but a stray root-level .config from manual testing is also caught)
|
|
tools/kconfig/conf
|
|
tools/kconfig/mconf
|
|
tools/kconfig/qconf
|
|
tools/kconfig/*.o
|
|
tools/kconfig/lxdialog/*.o
|
|
tools/kconfig/parser.tab.c
|
|
tools/kconfig/parser.tab.h
|
|
tools/kconfig/lexer.lex.c
|
|
tools/kconfig/qconf-moc.cc
|
|
tools/kconfig/*-cflags.mk
|
|
tools/kconfig/.mconf.*
|
|
tools/kconfig/.qconf.*
|
|
/.config
|
|
/.config.old
|