* [PATCH] vt: add new dynamically generated files to .gitignore
@ 2025-04-30 12:29 Bartosz Golaszewski
2025-04-30 13:31 ` Nicolas Pitre
0 siblings, 1 reply; 4+ messages in thread
From: Bartosz Golaszewski @ 2025-04-30 12:29 UTC (permalink / raw)
To: Greg Kroah-Hartman, Jiri Slaby, Bartosz Golaszewski,
Nicolas Pitre
Cc: linux-kernel, linux-serial
From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Add new dynamically generated headers to the local .gitignore.
Fixes: b11a041179e7 ("vt: introduce gen_ucs_width_table.py to create ucs_width_table.h")
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
---
drivers/tty/vt/.gitignore | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/tty/vt/.gitignore b/drivers/tty/vt/.gitignore
index 0221709b177d..49ce44edad65 100644
--- a/drivers/tty/vt/.gitignore
+++ b/drivers/tty/vt/.gitignore
@@ -2,3 +2,5 @@
/conmakehash
/consolemap_deftbl.c
/defkeymap.c
+/ucs_recompose_table.h
+/ucs_width_table.h
--
2.45.2
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] vt: add new dynamically generated files to .gitignore
2025-04-30 12:29 [PATCH] vt: add new dynamically generated files to .gitignore Bartosz Golaszewski
@ 2025-04-30 13:31 ` Nicolas Pitre
2025-04-30 14:52 ` Nicolas Pitre
0 siblings, 1 reply; 4+ messages in thread
From: Nicolas Pitre @ 2025-04-30 13:31 UTC (permalink / raw)
To: Bartosz Golaszewski
Cc: Greg Kroah-Hartman, Jiri Slaby, Bartosz Golaszewski, linux-kernel,
linux-serial
On Wed, 30 Apr 2025, Bartosz Golaszewski wrote:
> From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
>
> Add new dynamically generated headers to the local .gitignore.
>
> Fixes: b11a041179e7 ("vt: introduce gen_ucs_width_table.py to create ucs_width_table.h")
> Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Reviewed-by: Nicolas Pitre <npitre@baylibre.com>
> ---
> drivers/tty/vt/.gitignore | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/drivers/tty/vt/.gitignore b/drivers/tty/vt/.gitignore
> index 0221709b177d..49ce44edad65 100644
> --- a/drivers/tty/vt/.gitignore
> +++ b/drivers/tty/vt/.gitignore
> @@ -2,3 +2,5 @@
> /conmakehash
> /consolemap_deftbl.c
> /defkeymap.c
> +/ucs_recompose_table.h
> +/ucs_width_table.h
> --
> 2.45.2
>
>
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] vt: add new dynamically generated files to .gitignore
2025-04-30 13:31 ` Nicolas Pitre
@ 2025-04-30 14:52 ` Nicolas Pitre
2025-05-01 15:35 ` Greg Kroah-Hartman
0 siblings, 1 reply; 4+ messages in thread
From: Nicolas Pitre @ 2025-04-30 14:52 UTC (permalink / raw)
To: Bartosz Golaszewski
Cc: Greg Kroah-Hartman, Jiri Slaby, Bartosz Golaszewski, linux-kernel,
linux-serial
On Wed, 30 Apr 2025, Nicolas Pitre wrote:
> On Wed, 30 Apr 2025, Bartosz Golaszewski wrote:
>
> > From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
> >
> > Add new dynamically generated headers to the local .gitignore.
> >
> > Fixes: b11a041179e7 ("vt: introduce gen_ucs_width_table.py to create ucs_width_table.h")
> > Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
>
> Reviewed-by: Nicolas Pitre <npitre@baylibre.com>
Actually, the fixed commit should be the one titled `vt: move UCS tables
to the "shipped" form`. And, unless Greg pushes the revert of the
initial series upstream, the commit hash is likely to change too.
Nicolas
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] vt: add new dynamically generated files to .gitignore
2025-04-30 14:52 ` Nicolas Pitre
@ 2025-05-01 15:35 ` Greg Kroah-Hartman
0 siblings, 0 replies; 4+ messages in thread
From: Greg Kroah-Hartman @ 2025-05-01 15:35 UTC (permalink / raw)
To: Nicolas Pitre
Cc: Bartosz Golaszewski, Jiri Slaby, Bartosz Golaszewski,
linux-kernel, linux-serial
On Wed, Apr 30, 2025 at 10:52:40AM -0400, Nicolas Pitre wrote:
> On Wed, 30 Apr 2025, Nicolas Pitre wrote:
>
> > On Wed, 30 Apr 2025, Bartosz Golaszewski wrote:
> >
> > > From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
> > >
> > > Add new dynamically generated headers to the local .gitignore.
> > >
> > > Fixes: b11a041179e7 ("vt: introduce gen_ucs_width_table.py to create ucs_width_table.h")
> > > Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
> >
> > Reviewed-by: Nicolas Pitre <npitre@baylibre.com>
>
> Actually, the fixed commit should be the one titled `vt: move UCS tables
> to the "shipped" form`. And, unless Greg pushes the revert of the
> initial series upstream, the commit hash is likely to change too.
I've fixed this up when applying it, thanks.
greg k-h
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-05-01 15:35 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-30 12:29 [PATCH] vt: add new dynamically generated files to .gitignore Bartosz Golaszewski
2025-04-30 13:31 ` Nicolas Pitre
2025-04-30 14:52 ` Nicolas Pitre
2025-05-01 15:35 ` Greg Kroah-Hartman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox