3c86f6c866
The engine exposes only SMBus BYTE_DATA/WORD_DATA, so i2cdetect (which needs SMBus QUICK or READ_BYTE) cannot scan the bus. Replace the misleading "i2cdetect -r/-y" scan instructions with a direct i2cget byte-data read in the README, the cover letter and the smoke test. Also gitignore the archived internal working documents (docs/archive-*.md). Signed-off-by: Simone Chifari <simone.chifari@gmail.com>
56 lines
794 B
Plaintext
56 lines
794 B
Plaintext
# Kernel build artifacts & temporary files
|
|
*.ko
|
|
*.ko.zst
|
|
*.mod
|
|
*.mod.c
|
|
*.mod.o
|
|
*.o
|
|
*.a
|
|
*.s
|
|
.*.cmd
|
|
.tmp_versions/
|
|
modules.order
|
|
Module.symvers
|
|
/i2c-imc-skylake.mod
|
|
|
|
# C/C++ Developer tools and symbol databases
|
|
*.d
|
|
*.o.d
|
|
compile_commands.json
|
|
.clangd/
|
|
.cache/
|
|
tags
|
|
TAGS
|
|
GPATH
|
|
GRTAGS
|
|
GSYMS
|
|
GTAGS
|
|
|
|
# IDEs and Editors
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
*.code-workspace
|
|
|
|
# OS-specific files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Generated patch files (git format-patch output)
|
|
patches/
|
|
|
|
# Internal working documents (not for public repo)
|
|
TODO.md
|
|
docs/archive-submission-analysis.md
|
|
README.local.md
|
|
AGENTS.md
|
|
docs/mainline-plan.md
|
|
docs/archive-i2c-imc-driver-plan.md
|
|
docs/archive-v3-review-fixes.md
|
|
docs/submission/submission-instructions.md
|
|
|
|
# Private Gitea CI (replaced by .github/workflows/ for public repo)
|
|
.gitea/
|