Files
linux-kernel-module-cheat/.gitignore
Ciro Santilli 20bc64cd69 docs: create virtualenv
Newer Ubuntu does not allow global package installs, it is so annoying!
2022-07-19 20:21:19 +00:00

51 lines
628 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__
.venv
# Accidents.
/core
/m5out
# In-tree userland builds.
*.o
*.out
*.so
# Kernel modules.
*.ko
*.ko.cmd
*.mod.c
*.o.cmd
.cache.mk
.tmp_versions
Module.symvers
modules.order
# node.js
node_modules
# Performance profiling stuff.
perf.data
callgrind.out.*