mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
86a8b3a207
The spl directory is ignored by git as these objects are created during spl creation. The only file not created is the Makefile. This file can be modified and checked in via git. Due to the order of rule precedence having the whole directory ignored first then indicating not to ignore the Makefile is not correct the message to force adding the Makefile is still shown. So reorder the .gitignore for the Makefile and indicate that the Makefile does not need to be ignored first and then indicate everything else in spl should be ignored after wards. Signed-off-by: Dan Murphy <dmurphy@ti.com>
93 lines
965 B
Text
93 lines
965 B
Text
#
|
|
# NOTE! Don't add files that are generated in specific
|
|
# subdirectories here. Add them in the ".gitignore" file
|
|
# in that subdirectory instead.
|
|
#
|
|
# Normal rules
|
|
#
|
|
|
|
*.rej
|
|
*.orig
|
|
*.a
|
|
*.o
|
|
*.su
|
|
*~
|
|
*.swp
|
|
*.patch
|
|
*.bin
|
|
*.cfgtmp
|
|
*.dts.tmp
|
|
|
|
# Build tree
|
|
/build-*
|
|
|
|
#
|
|
# Top-level generic files
|
|
#
|
|
|
|
/MLO*
|
|
/SPL
|
|
/System.map
|
|
/u-boot
|
|
/u-boot.elf
|
|
/u-boot.hex
|
|
/u-boot.imx
|
|
/u-boot-with-spl.imx
|
|
/u-boot-with-nand-spl.imx
|
|
/u-boot.map
|
|
/u-boot.srec
|
|
/u-boot.ldr
|
|
/u-boot.ldr.hex
|
|
/u-boot.ldr.srec
|
|
/u-boot.img
|
|
/u-boot.kwb
|
|
/u-boot.sha1
|
|
/u-boot.dis
|
|
/u-boot.lds
|
|
/u-boot.ubl
|
|
/u-boot.ais
|
|
/u-boot.dtb
|
|
/u-boot.sb
|
|
|
|
#
|
|
# Generated files
|
|
#
|
|
|
|
*.depend*
|
|
/LOG
|
|
/errlog
|
|
/reloc_off
|
|
|
|
!/spl/Makefile
|
|
/spl/*
|
|
/tpl/
|
|
|
|
/include/generated/
|
|
/include/spl-autoconf.mk
|
|
/include/tpl-autoconf.mk
|
|
asm-offsets.s
|
|
|
|
# stgit generated dirs
|
|
patches-*
|
|
.stgit-edit.txt
|
|
|
|
# quilt's files
|
|
patches
|
|
series
|
|
|
|
# gdb files
|
|
.gdb_history
|
|
|
|
# cscope files
|
|
cscope.*
|
|
|
|
# tags files
|
|
/tags
|
|
/ctags
|
|
/etags
|
|
|
|
# gnu global files
|
|
GPATH
|
|
GRTAGS
|
|
GSYMS
|
|
GTAGS
|