.gitignore: Split into subdirectory files
There's no need for the global list of files to ignore, so use git's ability to work with more local configuration. Change-Id: I50882e6756cbc0fdfd899353cc23962544690fb3 Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/46879 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Felix Held <felix-coreboot@felixheld.de> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Reviewed-by: Christian Walter <christian.walter@9elements.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
33b0f15434
commit
6065f616eb
|
@ -1,6 +1,3 @@
|
|||
payloads/libpayload/install/
|
||||
payloads/nvramcui/build
|
||||
payloads/nvramcui/libpayload
|
||||
junit.xml
|
||||
abuild*.xml
|
||||
.config
|
||||
|
@ -11,46 +8,8 @@ defconfig
|
|||
.ccwrap
|
||||
build/
|
||||
coreboot-builds/
|
||||
payloads/coreinfo/lpbuild/
|
||||
payloads/coreinfo/lp.config*
|
||||
payloads/external/depthcharge/depthcharge/
|
||||
payloads/external/FILO/filo/
|
||||
payloads/external/GRUB2/grub2/
|
||||
payloads/external/LinuxBoot/linuxboot/
|
||||
payloads/external/SeaBIOS/seabios/
|
||||
payloads/external/tianocore/tianocore/
|
||||
payloads/external/tint/tint/
|
||||
payloads/external/U-Boot/u-boot/
|
||||
payloads/external/Memtest86Plus/memtest86plus/
|
||||
payloads/external/iPXE/ipxe/
|
||||
util/crossgcc/acpica-unix-*/
|
||||
util/crossgcc/binutils-*/
|
||||
util/crossgcc/build-*BINUTILS/
|
||||
util/crossgcc/build-*EXPAT/
|
||||
util/crossgcc/build-*GCC/
|
||||
util/crossgcc/build-*GDB/
|
||||
util/crossgcc/build-*GMP/
|
||||
util/crossgcc/build-*LIBELF/
|
||||
util/crossgcc/build-*MPC/
|
||||
util/crossgcc/build-*MPFR/
|
||||
util/crossgcc/build-*PYTHON/
|
||||
util/crossgcc/build-*LVM/
|
||||
util/crossgcc/build-*IASL/
|
||||
util/crossgcc/expat-*/
|
||||
util/crossgcc/gcc-*/
|
||||
util/crossgcc/gdb-*/
|
||||
util/crossgcc/gmp-*/
|
||||
util/crossgcc/libelf-*/
|
||||
util/crossgcc/mingwrt-*/
|
||||
util/crossgcc/mpc-*/
|
||||
util/crossgcc/mpfr-*/
|
||||
util/crossgcc/Python-*/
|
||||
util/crossgcc/*.src/
|
||||
util/crossgcc/tarballs/
|
||||
util/crossgcc/w32api-*/
|
||||
util/crossgcc/xgcc/
|
||||
util/crossgcc/xgcc-*/
|
||||
util/crossgcc/xgcc
|
||||
coreboot-builds*/
|
||||
|
||||
site-local
|
||||
|
||||
*.\#
|
||||
|
@ -66,7 +25,6 @@ site-local
|
|||
*.pyc
|
||||
*.sw[po]
|
||||
/*.rom
|
||||
coreboot-builds*/
|
||||
|
||||
# Development friendly files
|
||||
tags
|
||||
|
@ -76,60 +34,9 @@ tags
|
|||
xgcc/
|
||||
tarballs/
|
||||
|
||||
#
|
||||
# KDE editors create lots of backup files whenever
|
||||
# a file is edited, so just ignore them
|
||||
# editor backup files, temporary files, IDE project files
|
||||
*~
|
||||
*.kate-swp
|
||||
# Ignore Kdevelop project file
|
||||
*.kdev4
|
||||
|
||||
util/*/.dependencies
|
||||
util/*/.test
|
||||
util/amdfwtool/amdfwtool
|
||||
util/archive/archive
|
||||
util/bincfg/bincfg
|
||||
util/board_status/board-status
|
||||
util/bucts/bucts
|
||||
util/cbfstool/cbfs-compression-tool
|
||||
util/cbfstool/cbfstool
|
||||
util/cbfstool/fmaptool
|
||||
util/cbfstool/ifwitool
|
||||
util/cbfstool/rmodtool
|
||||
util/cbmem/.dependencies
|
||||
util/cbmem/cbmem
|
||||
util/ectool/ectool
|
||||
util/futility/futility
|
||||
util/genprof/genprof
|
||||
util/getpir/getpir
|
||||
util/ifdtool/ifdtool
|
||||
util/intelmetool/intelmetool
|
||||
util/inteltool/.dependencies
|
||||
util/inteltool/inteltool
|
||||
util/intelp2m/intelp2m
|
||||
util/intelp2m/generate/gpio.h
|
||||
util/intelvbttool/intelvbttool
|
||||
util/msrtool/Makefile
|
||||
util/msrtool/Makefile.deps
|
||||
util/msrtool/msrtool
|
||||
util/nvramtool/.dependencies
|
||||
util/nvramtool/nvramtool
|
||||
util/pmh7tool/pmh7tool
|
||||
util/runfw/googlesnow
|
||||
util/superiotool/superiotool
|
||||
util/vgabios/testbios
|
||||
util/autoport/autoport
|
||||
util/kbc1126/kbc1126_ec_dump
|
||||
util/kbc1126/kbc1126_ec_insert
|
||||
util/spd_tools/*/gen_spd
|
||||
util/spd_tools/*/gen_part_id
|
||||
|
||||
Documentation/*.aux
|
||||
Documentation/*.idx
|
||||
Documentation/*.log
|
||||
Documentation/*.toc
|
||||
Documentation/*.out
|
||||
Documentation/*.pdf
|
||||
Documentation/_build
|
||||
|
||||
doxygen/*
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
*.aux
|
||||
*.idx
|
||||
*.log
|
||||
*.toc
|
||||
*.out
|
||||
*.pdf
|
||||
_build
|
|
@ -0,0 +1,2 @@
|
|||
lpbuild/
|
||||
lp.config*
|
|
@ -0,0 +1,10 @@
|
|||
depthcharge/depthcharge/
|
||||
FILO/filo/
|
||||
GRUB2/grub2/
|
||||
LinuxBoot/linuxboot/
|
||||
SeaBIOS/seabios/
|
||||
tianocore/tianocore/
|
||||
tint/tint/
|
||||
U-Boot/u-boot/
|
||||
Memtest86Plus/memtest86plus/
|
||||
iPXE/ipxe/
|
|
@ -0,0 +1 @@
|
|||
install/
|
|
@ -0,0 +1,2 @@
|
|||
build
|
||||
libpayload
|
|
@ -0,0 +1,3 @@
|
|||
.dependencies
|
||||
.test
|
||||
amdfwtool
|
|
@ -0,0 +1,3 @@
|
|||
.dependencies
|
||||
.test
|
||||
archive
|
|
@ -0,0 +1,3 @@
|
|||
.dependencies
|
||||
.test
|
||||
autoport
|
|
@ -0,0 +1,3 @@
|
|||
.dependencies
|
||||
.test
|
||||
bincfg
|
|
@ -0,0 +1 @@
|
|||
board-status
|
|
@ -0,0 +1,3 @@
|
|||
.dependencies
|
||||
.test
|
||||
bucts
|
|
@ -0,0 +1,7 @@
|
|||
.dependencies
|
||||
.test
|
||||
cbfs-compression-tool
|
||||
cbfstool
|
||||
fmaptool
|
||||
ifwitool
|
||||
rmodtool
|
|
@ -0,0 +1,3 @@
|
|||
.dependencies
|
||||
.test
|
||||
cbmem
|
|
@ -0,0 +1,28 @@
|
|||
acpica-unix-*/
|
||||
binutils-*/
|
||||
build-*BINUTILS/
|
||||
build-*EXPAT/
|
||||
build-*GCC/
|
||||
build-*GDB/
|
||||
build-*GMP/
|
||||
build-*LIBELF/
|
||||
build-*MPC/
|
||||
build-*MPFR/
|
||||
build-*PYTHON/
|
||||
build-*LVM/
|
||||
build-*IASL/
|
||||
expat-*/
|
||||
gcc-*/
|
||||
gdb-*/
|
||||
gmp-*/
|
||||
libelf-*/
|
||||
mingwrt-*/
|
||||
mpc-*/
|
||||
mpfr-*/
|
||||
Python-*/
|
||||
*.src/
|
||||
tarballs/
|
||||
w32api-*/
|
||||
xgcc/
|
||||
xgcc-*/
|
||||
xgcc
|
|
@ -0,0 +1,3 @@
|
|||
.dependencies
|
||||
.test
|
||||
ectool
|
|
@ -0,0 +1,3 @@
|
|||
.dependencies
|
||||
.test
|
||||
futility
|
|
@ -0,0 +1,3 @@
|
|||
.dependencies
|
||||
.test
|
||||
genprof
|
|
@ -0,0 +1,3 @@
|
|||
.dependencies
|
||||
.test
|
||||
ifdtool
|
|
@ -0,0 +1,3 @@
|
|||
.dependencies
|
||||
.test
|
||||
intelmetool
|
|
@ -0,0 +1,4 @@
|
|||
.dependencies
|
||||
.test
|
||||
intelp2m
|
||||
generate/gpio.h
|
|
@ -0,0 +1,3 @@
|
|||
.dependencies
|
||||
.test
|
||||
inteltool
|
|
@ -0,0 +1,3 @@
|
|||
.dependencies
|
||||
.test
|
||||
intelvbttool
|
|
@ -0,0 +1,4 @@
|
|||
.dependencies
|
||||
.test
|
||||
kbc1126_ec_dump
|
||||
kbc1126_ec_insert
|
|
@ -0,0 +1,5 @@
|
|||
.dependencies
|
||||
.test
|
||||
msrtool
|
||||
Makefile
|
||||
Makefile.deps
|
|
@ -0,0 +1,3 @@
|
|||
.dependencies
|
||||
.test
|
||||
nvramtool
|
|
@ -0,0 +1,3 @@
|
|||
.dependencies
|
||||
.test
|
||||
pmh7tool
|
|
@ -0,0 +1,4 @@
|
|||
.dependencies
|
||||
.test
|
||||
*/gen_spd
|
||||
*/gen_part_id
|
|
@ -0,0 +1,3 @@
|
|||
.dependencies
|
||||
.test
|
||||
superiotool
|
|
@ -0,0 +1,3 @@
|
|||
.dependencies
|
||||
.test
|
||||
testbios
|
Loading…
Reference in New Issue