123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- #
- # Kbuild ignores
- #
- .*
- *.o
- *.o.*
- *.a
- *.s
- Kbuild
- Config.in
- #
- # Never ignore these
- #
- !.gitignore
- #
- # Normal output
- #
- /busybox
- /busybox_old
- /busybox_unstripped*
- #
- # Backups / patches
- #
- *~
- *.orig
- *.rej
- /*.patch
- #
- # debugging stuff
- #
- core
- .gdb_history
- .gdbinit
- #
- # testing output
- #
- /busybox.links
- /runtest-tempdir-links
- /testsuite/echo-ne
- #
- # cscope output
- #
- cscope.files
- cscope.in.out
- cscope.out
- cscope.po.out
- #
- # ctags output
- #
- tags
- TAGS
- #
- # user-supplied scripts
- #
- /embed
|