gitignore: sort file
LANG=C sort -u .gitignore | sponge .gitignore This way it's easier to keep track of the entries. Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> Acked-by: Emil Velikov <emil.velikov@collabora.com>main
parent
866ada1b37
commit
d8e615f975
|
@ -1,6 +1,3 @@
|
||||||
bsd-core/*/@
|
|
||||||
bsd-core/*/machine
|
|
||||||
*~
|
|
||||||
*.1
|
*.1
|
||||||
*.3
|
*.3
|
||||||
*.5
|
*.5
|
||||||
|
@ -17,17 +14,20 @@ bsd-core/*/machine
|
||||||
*.o.cmd
|
*.o.cmd
|
||||||
*.sw?
|
*.sw?
|
||||||
*.trs
|
*.trs
|
||||||
|
*~
|
||||||
|
.*check*
|
||||||
|
.*install*
|
||||||
.depend
|
.depend
|
||||||
.deps
|
.deps
|
||||||
.libs
|
.libs
|
||||||
.tmp_versions
|
.tmp_versions
|
||||||
.*check*
|
|
||||||
.*install*
|
|
||||||
Makefile
|
Makefile
|
||||||
Makefile.in
|
Makefile.in
|
||||||
TAGS
|
TAGS
|
||||||
aclocal.m4
|
aclocal.m4
|
||||||
autom4te.cache
|
autom4te.cache
|
||||||
|
bsd-core/*/@
|
||||||
|
bsd-core/*/machine
|
||||||
build-aux
|
build-aux
|
||||||
bus_if.h
|
bus_if.h
|
||||||
compile
|
compile
|
||||||
|
@ -47,21 +47,22 @@ drm_pciids.h
|
||||||
export_syms
|
export_syms
|
||||||
i915.kld
|
i915.kld
|
||||||
install-sh
|
install-sh
|
||||||
libdrm/config.h.in
|
|
||||||
libdrm.pc
|
libdrm.pc
|
||||||
libdrm_intel.pc
|
libdrm/config.h.in
|
||||||
libdrm_nouveau.pc
|
libdrm_amdgpu.pc
|
||||||
libdrm_radeon.pc
|
libdrm_etnaviv.pc
|
||||||
libdrm_omap.pc
|
|
||||||
libdrm_exynos.pc
|
libdrm_exynos.pc
|
||||||
libdrm_freedreno.pc
|
libdrm_freedreno.pc
|
||||||
libdrm_amdgpu.pc
|
libdrm_intel.pc
|
||||||
|
libdrm_nouveau.pc
|
||||||
|
libdrm_omap.pc
|
||||||
|
libdrm_radeon.pc
|
||||||
libdrm_vc4.pc
|
libdrm_vc4.pc
|
||||||
libdrm_etnaviv.pc
|
|
||||||
libkms.pc
|
libkms.pc
|
||||||
libtool
|
libtool
|
||||||
ltmain.sh
|
ltmain.sh
|
||||||
mach64.kld
|
mach64.kld
|
||||||
|
man/*.3
|
||||||
man/.man_fixup
|
man/.man_fixup
|
||||||
mga.kld
|
mga.kld
|
||||||
missing
|
missing
|
||||||
|
@ -74,35 +75,34 @@ savage.kld
|
||||||
sis.kld
|
sis.kld
|
||||||
stamp-h1
|
stamp-h1
|
||||||
tdfx.kld
|
tdfx.kld
|
||||||
via.kld
|
|
||||||
tests/auth
|
|
||||||
tests/amdgpu/amdgpu_test
|
tests/amdgpu/amdgpu_test
|
||||||
|
tests/auth
|
||||||
tests/dristat
|
tests/dristat
|
||||||
tests/drmdevice
|
tests/drmdevice
|
||||||
tests/drmsl
|
tests/drmsl
|
||||||
tests/drmstat
|
tests/drmstat
|
||||||
|
tests/etnaviv/etnaviv_2d_test
|
||||||
|
tests/etnaviv/etnaviv_bo_cache_test
|
||||||
|
tests/etnaviv/etnaviv_cmd_stream_test
|
||||||
|
tests/exynos/exynos_fimg2d_event
|
||||||
|
tests/exynos/exynos_fimg2d_perf
|
||||||
|
tests/exynos/exynos_fimg2d_test
|
||||||
tests/getclient
|
tests/getclient
|
||||||
tests/getstats
|
tests/getstats
|
||||||
tests/getversion
|
tests/getversion
|
||||||
tests/hash
|
tests/hash
|
||||||
tests/lock
|
|
||||||
tests/openclose
|
|
||||||
tests/random
|
|
||||||
tests/setversion
|
|
||||||
tests/updatedraw
|
|
||||||
tests/modeprint/modeprint
|
|
||||||
tests/modetest/modetest
|
|
||||||
tests/name_from_fd
|
|
||||||
tests/proptest/proptest
|
|
||||||
tests/kms/kms-steal-crtc
|
tests/kms/kms-steal-crtc
|
||||||
tests/kms/kms-universal-planes
|
tests/kms/kms-universal-planes
|
||||||
tests/kmstest/kmstest
|
tests/kmstest/kmstest
|
||||||
tests/vbltest/vbltest
|
tests/lock
|
||||||
|
tests/modeprint/modeprint
|
||||||
|
tests/modetest/modetest
|
||||||
|
tests/name_from_fd
|
||||||
|
tests/openclose
|
||||||
|
tests/proptest/proptest
|
||||||
tests/radeon/radeon_ttm
|
tests/radeon/radeon_ttm
|
||||||
tests/exynos/exynos_fimg2d_event
|
tests/random
|
||||||
tests/exynos/exynos_fimg2d_perf
|
tests/setversion
|
||||||
tests/exynos/exynos_fimg2d_test
|
tests/updatedraw
|
||||||
tests/etnaviv/etnaviv_2d_test
|
tests/vbltest/vbltest
|
||||||
tests/etnaviv/etnaviv_cmd_stream_test
|
via.kld
|
||||||
tests/etnaviv/etnaviv_bo_cache_test
|
|
||||||
man/*.3
|
|
||||||
|
|
Loading…
Reference in New Issue