mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-13 20:12:26 +00:00
40 lines
507 B
Plaintext
40 lines
507 B
Plaintext
# Important directories.
|
|
/out
|
|
# https://cirosantilli.com/linux-kernel-module-cheat#docker
|
|
/out.docker
|
|
/data
|
|
|
|
# Temporary files.
|
|
*.tmp
|
|
tmp.*
|
|
*.tmp.*
|
|
*~
|
|
*.gitignore
|
|
gitignore.*
|
|
|
|
# https://cirosantilli.com/linux-kernel-module-cheat#prebuilt
|
|
/lkmc-*.zip
|
|
|
|
# https://cirosantilli.com/linux-kernel-module-cheat#bst-vs-heap-vs-hashmap
|
|
*.dat
|
|
|
|
# Python trash.
|
|
*.pyc
|
|
__pycache__
|
|
|
|
# Accidents.
|
|
/core
|
|
/m5out
|
|
*.o
|
|
*.out
|
|
|
|
# Kernel modules.
|
|
*.ko
|
|
*.ko.cmd
|
|
*.mod.c
|
|
*.o.cmd
|
|
.cache.mk
|
|
.tmp_versions
|
|
Module.symvers
|
|
modules.order
|