On 1/27/21 7:08 PM, Daniel P. Berrangé wrote: > Primarily this is to pull in a fix for Win32 keycodes. The other useful > change is the removal of build timestamp from generated files which is > desirable for reproducable builds. > > The make rules need updating due to slightly changed CLI syntax - more > args must now come after the command name. > > 6119e6e19a050df847418de7babe5166779955e4 Fix scan codes for Korean keys > 685684a8404301780714e8a89a871981e7cae988 Fix argument order in output headers > b3774853042c951b200d767697285781cc59a83c Add HTML entries for Korean layout > keys > 8e54850d800e4697a2798fb82ac740e760f8530b Add macOS entries for Japanese > keyboards > 27acf0ef828bf719b2053ba398b195829413dbdd Fix win32 keycode for VK_OEM_102 > 317d3eeb963a515e15a63fa356d8ebcda7041a51 Add support for generating RST > formatted docs pages > 7381b9bfadd31c4c9e9a10b5bb5032f9189d4352 Introduce separate args for title & > subtitle with docs generator > 6280c94f306df6a20bbc100ba15a5a81af0366e6 keymap-gen: Name sections in pod > output > df4e56f8fab65ba714ec18f4e7338a966a1620ad Add an empty meson project > 16e5b0787687d8904dad2c026107409eb9bfcb95 remove buildtime from generated files > 044f21dd0d4f62519aae9f1d53a026407a0b664f add header file generators > 7779876a6b06755e3bb2c94ee3ded50635bcb0fa c++: add extern declaration to the > generated file > 0e0a317889464397d6f1ae03aad0d2ca593aab04 move CLanguageGenerator closer to > CLanguageGenerator itself > > Signed-off-by: Daniel P. Berrangé <berra...@redhat.com> > --- > ui/keycodemapdb | 2 +- > ui/meson.build | 3 ++- > 2 files changed, 3 insertions(+), 2 deletions(-) > > diff --git a/ui/keycodemapdb b/ui/keycodemapdb > index 6b3d716e2b..6119e6e19a 160000 > --- a/ui/keycodemapdb > +++ b/ui/keycodemapdb > @@ -1 +1 @@ > -Subproject commit 6b3d716e2b6472eb7189d3220552280ef3d832ce > +Subproject commit 6119e6e19a050df847418de7babe5166779955e4 > diff --git a/ui/meson.build b/ui/meson.build > index 634fabab0d..156b600a99 100644 > --- a/ui/meson.build > +++ b/ui/meson.build > @@ -127,9 +127,10 @@ if have_system or xkbcommon.found() > capture: true, > input: files('keycodemapdb/data/keymaps.csv'), > command: [python.full_path(), > files('keycodemapdb/tools/keymap-gen'), > + 'code-map', > '--lang', 'glib2', > '--varname', > 'qemu_input_map_@0@_to_@1@'.format(e[0], e[1]), > - 'code-map', '@INPUT0@', e[0], e[1]]) > + '@INPUT0@', e[0], e[1]])
This matches with 685684a ("Fix argument order in output headers") indeed. Reviewed-by: Philippe Mathieu-Daudé <phi...@redhat.com>