Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

scripts/dtc: Add missing fdtoverlay to gitignore

Commit 0da6bcd9fcc0 ("scripts: dtc: Build fdtoverlay tool") enabled
building fdtoverlay, but failed to add it to .gitignore.

Also add a note to keep hostprogs in sync with .gitignore.

Fixes: 0da6bcd9fcc0 ("scripts: dtc: Build fdtoverlay tool")
Reported-by: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rob Herring <robh@kernel.org>

authored by

Rob Herring and committed by
Linus Torvalds
c3476d2f f6e1e1d1

+2
+1
scripts/dtc/.gitignore
··· 1 1 # SPDX-License-Identifier: GPL-2.0-only 2 2 dtc 3 + fdtoverlay
+1
scripts/dtc/Makefile
··· 1 1 # SPDX-License-Identifier: GPL-2.0 2 2 # scripts/dtc makefile 3 3 4 + # *** Also keep .gitignore in sync when changing *** 4 5 hostprogs-always-$(CONFIG_DTC) += dtc fdtoverlay 5 6 hostprogs-always-$(CHECK_DT_BINDING) += dtc 6 7