.gitignore 261 B

12345678910111213141516171819202122232425262728293031323334353637
  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_old
  20. /busybox_unstripped*
  21. #
  22. # Backups / patches
  23. #
  24. *~
  25. *.orig
  26. *.rej
  27. /*.patch
  28. #
  29. # debugging stuff
  30. #
  31. core
  32. .gdb_history
  33. .gdbinit