From 356d9a9206e542c3746631264a8a04db723d38da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20Lebrun?= Date: Mon, 17 Nov 2025 18:07:52 +0100 Subject: [PATCH] gitignore: ignore utils/brmake log output named `br.log` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Signed-off-by: Thomas Petazzoni (cherry picked from commit a5d29e752a996c24f26b03d118e6f755e8eae5a7) Signed-off-by: Thomas Perale --- .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