Files
SilverMetal/.gitignore
sysadmin 67befa56df
Some checks failed
Build SilverMetal Enhanced - Windows ISO / build (pull_request) Failing after 5m49s
fix(build): track driver .exe files (gitignore *.exe dropped netkvmp.exe -> DISM rejected NetKVM)
The global .gitignore '*.exe' rule silently excluded netkvmp.exe + netkvmco.exe when the
NetKVM driver was committed, so only inf/sys/cat shipped. netkvm.inf REQUIRES netkvmp.exe
([SourceDisksFiles] + netkvmp.CopyFiles), so Add-WindowsDriver failed every build with 'the
driver package could not be installed' -> no virtio NIC driver -> no VM network. Un-ignore
windows/drivers/** and force-add the referenced binaries.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-10 17:22:07 +01:00

75 lines
979 B
Plaintext

# Brainstorming / design scratch (mockups, companion state) — durable specs live in docs/
.superpowers/
# Build outputs
build/output/
build/cache/
*.iso
*.img
*.deb
*.rpm
*.exe
*.msi
*.dmg
*.pkg
*.apk
*.aab
*.ipa
# Secrets / keys (real keys never live in this repo)
*.key
*.pem
*.p12
*.pfx
*.gpg
secring.*
*-private*
*.kbx
trustdb.gpg
# OS / editor cruft
.DS_Store
Thumbs.db
*~
.idea/
.vscode/
*.swp
*.swo
# Local config overrides
*.local
.env
.env.*
!.env.example
# Toolchain caches
node_modules/
__pycache__/
*.pyc
.cache/
.npm/
target/
obj/
bin/
dist/
out/
# Live-build / debootstrap intermediates
chroot/
binary/
*.log
.build/
config/local-*
# Test artifacts
tests/output/
*.cov
coverage/
# SBOM intermediates (final SBOMs are committed; intermediates are not)
sbom/work/
# Driver binaries (e.g. virtio NetKVM netkvmp.exe) must be tracked despite the global
# *.exe / *.msi ignores above -- they are referenced by the .inf and DISM needs them.
!windows/drivers/**