.gitignore 248 B

123456789101112131415161718192021222324252627282930313233343536
  1. #
  2. # Kbuild ignores
  3. #
  4. .*
  5. *.o
  6. *.o.*
  7. *.a
  8. *.s
  9. Kbuild
  10. Config.in
  11. #
  12. # Never ignore these
  13. #
  14. !.gitignore
  15. #
  16. # Normal output
  17. #
  18. /busybox
  19. /busybox_unstripped*
  20. #
  21. # Backups / patches
  22. #
  23. *~
  24. *.orig
  25. *.rej
  26. /*.patch
  27. #
  28. # debugging stuff
  29. #
  30. core
  31. .gdb_history
  32. .gdbinit