Message ID | 20241109174845.9227-1-ansuelsmth@gmail.com |
---|---|
State | Accepted |
Commit | 2bf2615b8004e4a296fb25498ad0c183fd5c7b94 |
Delegated to: | Tom Rini |
Headers | show |
Series | .gitignore: add test overlay .S and u_boot_logo files | expand |
On Sat, 09 Nov 2024 18:48:44 +0100, Christian Marangi wrote: > Add test overlay .S and u_boot_logo file to gitignore as these files are > generated and should not be committed but ignored. > > Applied to u-boot/master, thanks!
diff --git a/.gitignore b/.gitignore index 502a7e6ec70..e93c33da1bd 100644 --- a/.gitignore +++ b/.gitignore @@ -75,6 +75,9 @@ fit-dtb.blob* /keep-syms-lto.* /*imx8mimage* /*imx8mcst* +/drivers/video/u_boot_logo.S +/test/overlay/test-fdt-overlay.dtbo.S +/test/overlay/test-fdt-overlay-stacked.dtbo.S # # Generated include files @@ -83,6 +86,8 @@ fit-dtb.blob* /include/config.h /include/config/ /include/generated/ +/include/bmp_logo.h +/include/bmp_logo_data.h # stgit generated dirs patches-*
Add test overlay .S and u_boot_logo file to gitignore as these files are generated and should not be committed but ignored. Signed-off-by: Christian Marangi <ansuelsmth@gmail.com> --- .gitignore | 5 +++++ 1 file changed, 5 insertions(+)