123456789101112131415161718192021222324252627282930313233343536 |
- #
- # Kbuild ignores
- #
- .*
- *.o
- *.o.*
- *.a
- *.s
- Kbuild
- Config.in
- #
- # Never ignore these
- #
- !.gitignore
- #
- # Normal output
- #
- /busybox
- /busybox_unstripped*
- #
- # Backups / patches
- #
- *~
- *.orig
- *.rej
- /*.patch
- #
- # debugging stuff
- #
- core
- .gdb_history
- .gdbinit
|