diff options
author | Jiri Slaby <jslaby@suse.cz> | 2022-06-02 11:31:28 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2022-06-10 14:34:18 +0300 |
commit | 5c4d7b049dce57816171ba4374cecfddd6e6faed (patch) | |
tree | d748efbf7328777bd7bd6db820acb0dc46013a94 /drivers/tty/vt | |
parent | 0d49ee83a450224fcd28e1dcc210f9bbef86f338 (diff) | |
download | linux-5c4d7b049dce57816171ba4374cecfddd6e6faed.tar.xz |
tty/vt: Makefile, add --unicode for loadkeys invocation
For a long time, we generate unicode tables using loadkeys. So fix
Makefile to use that flag too.
Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Link: https://lore.kernel.org/r/20220602083128.22540-2-jslaby@suse.cz
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/vt')
-rw-r--r-- | drivers/tty/vt/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/vt/Makefile b/drivers/tty/vt/Makefile index fe30ce512819..b3dfe9d5717e 100644 --- a/drivers/tty/vt/Makefile +++ b/drivers/tty/vt/Makefile @@ -30,6 +30,6 @@ $(obj)/defkeymap.o: $(obj)/defkeymap.c ifdef GENERATE_KEYMAP $(obj)/defkeymap.c: $(obj)/%.c: $(src)/%.map - loadkeys --mktable $< > $@ + loadkeys --mktable --unicode $< > $@ endif |