.gitignore 622 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # Important directories.
  2. /out
  3. # https://cirosantilli.com/linux-kernel-module-cheat#docker
  4. /out.docker
  5. /data
  6. # Temporary files.
  7. *.tmp
  8. tmp.*
  9. *.tmp.*
  10. *~
  11. *.gitignore
  12. gitignore.*
  13. # https://cirosantilli.com/linux-kernel-module-cheat#prebuilt
  14. /lkmc-*.zip
  15. # https://cirosantilli.com/linux-kernel-module-cheat#bst-vs-heap-vs-hashmap
  16. *.dat
  17. # Python trash.
  18. *.pyc
  19. __pycache__
  20. # Accidents.
  21. /core
  22. /m5out
  23. # In-tree userland builds.
  24. *.o
  25. *.out
  26. *.so
  27. # Kernel modules.
  28. *.ko
  29. *.ko.cmd
  30. *.mod.c
  31. *.o.cmd
  32. .cache.mk
  33. .tmp_versions
  34. Module.symvers
  35. modules.order
  36. # node.js
  37. node_modules
  38. # Performance profiling stuff.
  39. perf.data
  40. callgrind.out.*