Files
chipsec-chipsec/.gitignore
T
Mathias Krause b54990274e .gitignore: ignore in-tree Linux kernel driver build artefacts
During development one might build the driver at its source location.
Add the build artefacts to the git ignore list to make `git status` less
noisy.

Signed-off-by: Mathias Krause <minipli@grsecurity.net>
2022-02-16 08:22:33 -08:00

37 lines
509 B
Plaintext

*.o
*.d
*.pyc
*.obj
*.pdb
*.lib
chipsec.egg-info
dist
build
# Linux driver
chipsec/helper/linux/*.ko
drivers/linux/**/.*.cmd
drivers/linux/*.ko
drivers/linux/*.mod
drivers/linux/*.mod.c
drivers/linux/Module.symvers
drivers/linux/modules.order
# Windows driver
.vs/
chipsec/helper/win/win7_amd64/
chipsec/helper/win/win7_x86/
drivers/win7/Debug/
drivers/win7/Release/
drivers/win7/x64/
# Compression tools
chipsec_tools/compression/Bin/
# py2exe
bin/
scripts/bdist.win-amd64/
# Visual Studio Code
.vscode