All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] gitignore: ignore utils/brmake log output named `br.log`
@ 2025-11-17 17:07 Théo Lebrun via buildroot
  2026-01-01 13:27 ` Thomas Petazzoni via buildroot
  2026-01-13 19:45 ` Arnout Vandecappelle via buildroot
  0 siblings, 2 replies; 3+ messages in thread
From: Théo Lebrun via buildroot @ 2025-11-17 17:07 UTC (permalink / raw)
  To: buildroot; +Cc: Thomas Petazzoni, Théo Lebrun

The `utils/brmake` tool runs `make all` with logs put into `br.log`.
That file is therefore the result of a build and committing it never
makes sense, neither upstream nor on any other remote/branch.

    ⟩ git status --short
    ⟩ make beaglebone_defconfig
    ⟩ ./utils/brmake
    ⟩ git status --short
    ?? br.log

Add a new `/br.log` entry in the root `.gitignore` file.
Append to the end because no ordering logic was found.

Signed-off-by: Théo Lebrun <theo.lebrun@bootlin.com>
---
 .gitignore | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.gitignore b/.gitignore
index ec5768d053..fb20b03daf 100644
--- a/.gitignore
+++ b/.gitignore
@@ -13,3 +13,4 @@
 *.rej
 *~
 *.pyc
+/br.log

---
base-commit: 8ccee2be221772f6d456fd852b237adb7f5bbe51
change-id: 20251117-gitignore-brmake-log-d4bf616574aa

Best regards,
-- 
Théo Lebrun <theo.lebrun@bootlin.com>

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [Buildroot] [PATCH] gitignore: ignore utils/brmake log output named `br.log`
  2025-11-17 17:07 [Buildroot] [PATCH] gitignore: ignore utils/brmake log output named `br.log` Théo Lebrun via buildroot
@ 2026-01-01 13:27 ` Thomas Petazzoni via buildroot
  2026-01-13 19:45 ` Arnout Vandecappelle via buildroot
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni via buildroot @ 2026-01-01 13:27 UTC (permalink / raw)
  To: Théo Lebrun via buildroot; +Cc: Théo Lebrun

On Mon, 17 Nov 2025 18:07:52 +0100
Théo Lebrun via buildroot <buildroot@buildroot.org> wrote:

> The `utils/brmake` tool runs `make all` with logs put into `br.log`.
> That file is therefore the result of a build and committing it never
> makes sense, neither upstream nor on any other remote/branch.
> 
>     ⟩ git status --short
>     ⟩ make beaglebone_defconfig
>     ⟩ ./utils/brmake
>     ⟩ git status --short
>     ?? br.log
> 
> Add a new `/br.log` entry in the root `.gitignore` file.
> Append to the end because no ordering logic was found.
> 
> Signed-off-by: Théo Lebrun <theo.lebrun@bootlin.com>
> ---
>  .gitignore | 1 +
>  1 file changed, 1 insertion(+)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Buildroot] [PATCH] gitignore: ignore utils/brmake log output named `br.log`
  2025-11-17 17:07 [Buildroot] [PATCH] gitignore: ignore utils/brmake log output named `br.log` Théo Lebrun via buildroot
  2026-01-01 13:27 ` Thomas Petazzoni via buildroot
@ 2026-01-13 19:45 ` Arnout Vandecappelle via buildroot
  1 sibling, 0 replies; 3+ messages in thread
From: Arnout Vandecappelle via buildroot @ 2026-01-13 19:45 UTC (permalink / raw)
  To: Théo Lebrun; +Cc: Arnout Vandecappelle, buildroot

In reply of:
> The `utils/brmake` tool runs `make all` with logs put into `br.log`.
> That file is therefore the result of a build and committing it never
> makes sense, neither upstream nor on any other remote/branch.
> 
>     ⟩ git status --short
>     ⟩ make beaglebone_defconfig
>     ⟩ ./utils/brmake
>     ⟩ git status --short
>     ?? br.log
> 
> Add a new `/br.log` entry in the root `.gitignore` file.
> Append to the end because no ordering logic was found.
> 
> Signed-off-by: Théo Lebrun <theo.lebrun@bootlin.com>

Applied to 2025.02.x and 2025.11.x. Thanks

> ---
>  .gitignore | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/.gitignore b/.gitignore
> index ec5768d053..fb20b03daf 100644
> --- a/.gitignore
> +++ b/.gitignore
> @@ -13,3 +13,4 @@
>  *.rej
>  *~
>  *.pyc
> +/br.log
> 
> ---
> base-commit: 8ccee2be221772f6d456fd852b237adb7f5bbe51
> change-id: 20251117-gitignore-brmake-log-d4bf616574aa
> 
> Best regards,
> -- 
> Théo Lebrun <theo.lebrun@bootlin.com>
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2026-01-13 19:46 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-17 17:07 [Buildroot] [PATCH] gitignore: ignore utils/brmake log output named `br.log` Théo Lebrun via buildroot
2026-01-01 13:27 ` Thomas Petazzoni via buildroot
2026-01-13 19:45 ` Arnout Vandecappelle via buildroot

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.