diff options
author | Andrey Zhizhikin <andrey.zhizhikin@leica-geosystems.com> | 2022-06-07 10:13:00 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-06-16 15:22:55 -0400 |
commit | 101a0f71e492d536bfe34f29caa065d04144ced0 (patch) | |
tree | ff2f4559a8dab9b19ae4d395199cb86c305ed19e /.gitignore | |
parent | 761157d3100be5918620f6c82bc119dbcc0637da (diff) | |
download | u-boot-101a0f71e492d536bfe34f29caa065d04144ced0.tar.gz |
.gitignore: add files produced by b4
b4 utility [1] is introduced by Linux Kernel developers and used to
fetch patches and patch series from lore.kernel.org and is proven
to be useful for U-Boot development. Detailed usage of the tool can be
read under post from the original author [2].
This tool fetches files from the list and populates the source folder
with additional files (*.cover and *.mbx) which are not ignored by git
and shown as newly added files.
Add those file patterns into .gitignore file, so they can be safely
skipped during changes attestation.
Link: [1]: https://pypi.org/project/b4/
Link: [2]: https://people.kernel.org/monsieuricon/introducing-b4-and-patch-attestation
Signed-off-by: Andrey Zhizhikin <andrey.zhizhikin@leica-geosystems.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 28c439f09fd..eb769f144c3 100644 --- a/.gitignore +++ b/.gitignore @@ -10,6 +10,7 @@ *.asn1.[ch] *.bin *.cfgout +*.cover *.dtb *.dtbo *.dtb.S @@ -22,6 +23,7 @@ *.lex.c *.lst *.mod.c +*.mbx *.o *.o.* *.order |