diff options
author | Leah Rowe <leah@libreboot.org> | 2024-01-17 19:32:54 +0000 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2024-01-17 19:32:54 +0000 |
commit | d44c9551c5e7456c2caa4a2815d33ff978dc55ef (patch) | |
tree | f1cd0824731b7863b876c002387210e04f88ac80 /script/build/roms | |
parent | 2b6beaf2f9b32f5662633f62885499f302265fb5 (diff) |
build/roms: regression fix: uninitialised variable
the "kmapdir" variable was removed in an earlier audit,
but was overlooked for -k because that option was untested.
rather than initialise the variable, re-use grubcfgsdir.
this fix enables e.g. "-k usdvorak" to work again.
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script/build/roms')
-rwxr-xr-x | script/build/roms | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/build/roms b/script/build/roms index a369d0e8..8278a9ab 100755 --- a/script/build/roms +++ b/script/build/roms @@ -152,7 +152,7 @@ build_grub_payload() [ -f "elf/grub/keymap_$keymap.cfg" ] || printf "keymap %s\n" \ "$keymap" > "elf/grub/keymap_$keymap.cfg" || err "!key"; : done - [ -n "${_keyboard}" ] && keymaps="${kmapdir}/${_keyboard}.gkb" + [ -n "$_keyboard" ] && keymaps="${grubcfgsdir}/keymap/${_keyboard}.gkb" [ -f "$grubelf" ] && return 0 [ -f "src/grub/grub-mkstandalone" ] || x_ ./update trees -b grub |