All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] board: .gitignore: replace dsdt.c by dsdt_generated.c
@ 2022-03-08  9:37 Philippe Reynes
  2022-03-08 11:52 ` Heinrich Schuchardt
  2022-03-09 20:01 ` Tom Rini
  0 siblings, 2 replies; 3+ messages in thread
From: Philippe Reynes @ 2022-03-08  9:37 UTC (permalink / raw)
  To: trini, sjg, marcel.ziswiler, heiko.thiery, heinrich.schuchardt
  Cc: u-boot, Philippe Reynes

Since commit 5d94cbd1dca7 ("scripts: Makefile.lib: generate
dsdt_generated.c instead of dsdt.c"), the file generated
is named dsdt_generated.c instead of dsdt.c.
So all files .gitignore referencing dsdt.c should be
upated with dsdt_generated.c.

Signed-off-by: Philippe Reynes <philippe.reynes@softathome.com>
---
 board/advantech/som-db5800-som-6867/.gitignore    | 6 +++---
 board/congatec/conga-qeval20-qa3-e3845/.gitignore | 6 +++---
 board/intel/bayleybay/.gitignore                  | 6 +++---
 board/intel/edison/.gitignore                     | 6 +++---
 board/intel/galileo/.gitignore                    | 6 +++---
 board/intel/minnowmax/.gitignore                  | 6 +++---
 6 files changed, 18 insertions(+), 18 deletions(-)

diff --git a/board/advantech/som-db5800-som-6867/.gitignore b/board/advantech/som-db5800-som-6867/.gitignore
index 6eb8a5481a..39e46ba0ae 100644
--- a/board/advantech/som-db5800-som-6867/.gitignore
+++ b/board/advantech/som-db5800-som-6867/.gitignore
@@ -1,3 +1,3 @@
-dsdt.aml
-dsdt.asl.tmp
-dsdt.c
+dsdt_generated.aml
+dsdt_generated.asl.tmp
+dsdt_generated.c
diff --git a/board/congatec/conga-qeval20-qa3-e3845/.gitignore b/board/congatec/conga-qeval20-qa3-e3845/.gitignore
index 6eb8a5481a..39e46ba0ae 100644
--- a/board/congatec/conga-qeval20-qa3-e3845/.gitignore
+++ b/board/congatec/conga-qeval20-qa3-e3845/.gitignore
@@ -1,3 +1,3 @@
-dsdt.aml
-dsdt.asl.tmp
-dsdt.c
+dsdt_generated.aml
+dsdt_generated.asl.tmp
+dsdt_generated.c
diff --git a/board/intel/bayleybay/.gitignore b/board/intel/bayleybay/.gitignore
index 6eb8a5481a..39e46ba0ae 100644
--- a/board/intel/bayleybay/.gitignore
+++ b/board/intel/bayleybay/.gitignore
@@ -1,3 +1,3 @@
-dsdt.aml
-dsdt.asl.tmp
-dsdt.c
+dsdt_generated.aml
+dsdt_generated.asl.tmp
+dsdt_generated.c
diff --git a/board/intel/edison/.gitignore b/board/intel/edison/.gitignore
index 6eb8a5481a..39e46ba0ae 100644
--- a/board/intel/edison/.gitignore
+++ b/board/intel/edison/.gitignore
@@ -1,3 +1,3 @@
-dsdt.aml
-dsdt.asl.tmp
-dsdt.c
+dsdt_generated.aml
+dsdt_generated.asl.tmp
+dsdt_generated.c
diff --git a/board/intel/galileo/.gitignore b/board/intel/galileo/.gitignore
index 6eb8a5481a..39e46ba0ae 100644
--- a/board/intel/galileo/.gitignore
+++ b/board/intel/galileo/.gitignore
@@ -1,3 +1,3 @@
-dsdt.aml
-dsdt.asl.tmp
-dsdt.c
+dsdt_generated.aml
+dsdt_generated.asl.tmp
+dsdt_generated.c
diff --git a/board/intel/minnowmax/.gitignore b/board/intel/minnowmax/.gitignore
index 6eb8a5481a..39e46ba0ae 100644
--- a/board/intel/minnowmax/.gitignore
+++ b/board/intel/minnowmax/.gitignore
@@ -1,3 +1,3 @@
-dsdt.aml
-dsdt.asl.tmp
-dsdt.c
+dsdt_generated.aml
+dsdt_generated.asl.tmp
+dsdt_generated.c
-- 
2.17.1


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

* Re: [PATCH] board: .gitignore: replace dsdt.c by dsdt_generated.c
  2022-03-08  9:37 [PATCH] board: .gitignore: replace dsdt.c by dsdt_generated.c Philippe Reynes
@ 2022-03-08 11:52 ` Heinrich Schuchardt
  2022-03-09 20:01 ` Tom Rini
  1 sibling, 0 replies; 3+ messages in thread
From: Heinrich Schuchardt @ 2022-03-08 11:52 UTC (permalink / raw)
  To: Philippe Reynes, trini, sjg, marcel.ziswiler, heiko.thiery,
	heinrich.schuchardt
  Cc: u-boot

On 3/8/22 10:37, Philippe Reynes wrote:
> Since commit 5d94cbd1dca7 ("scripts: Makefile.lib: generate
> dsdt_generated.c instead of dsdt.c"), the file generated
> is named dsdt_generated.c instead of dsdt.c.
> So all files .gitignore referencing dsdt.c should be
> upated with dsdt_generated.c.
>
> Signed-off-by: Philippe Reynes<philippe.reynes@softathome.com>

Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>

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

* Re: [PATCH] board: .gitignore: replace dsdt.c by dsdt_generated.c
  2022-03-08  9:37 [PATCH] board: .gitignore: replace dsdt.c by dsdt_generated.c Philippe Reynes
  2022-03-08 11:52 ` Heinrich Schuchardt
@ 2022-03-09 20:01 ` Tom Rini
  1 sibling, 0 replies; 3+ messages in thread
From: Tom Rini @ 2022-03-09 20:01 UTC (permalink / raw)
  To: Philippe Reynes
  Cc: sjg, marcel.ziswiler, heiko.thiery, heinrich.schuchardt, u-boot

[-- Attachment #1: Type: text/plain, Size: 505 bytes --]

On Tue, Mar 08, 2022 at 10:37:19AM +0100, Philippe Reynes wrote:

> Since commit 5d94cbd1dca7 ("scripts: Makefile.lib: generate
> dsdt_generated.c instead of dsdt.c"), the file generated
> is named dsdt_generated.c instead of dsdt.c.
> So all files .gitignore referencing dsdt.c should be
> upated with dsdt_generated.c.
> 
> Signed-off-by: Philippe Reynes <philippe.reynes@softathome.com>
> Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>

Applied to u-boot/master, thanks!

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

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

end of thread, other threads:[~2022-03-09 20:01 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-08  9:37 [PATCH] board: .gitignore: replace dsdt.c by dsdt_generated.c Philippe Reynes
2022-03-08 11:52 ` Heinrich Schuchardt
2022-03-09 20:01 ` Tom Rini

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.