.gitignore 231 B

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