diff options
author | Andrew Robbins <contact@andrewrobbins.info> | 2017-09-01 23:03:08 -0400 |
---|---|---|
committer | Andrew Robbins <contact@andrewrobbins.info> | 2017-09-02 00:41:11 -0400 |
commit | 89c7df5adcf1a01fb530b84198d87a096217a162 (patch) | |
tree | 052f8dabe5d007a01078c4c21805dd963f766a86 /projects/grub/grub-helper | |
parent | 004eca8565936ccd16db4e6fd27115d5b6ad6119 (diff) | |
download | librebootfr-89c7df5adcf1a01fb530b84198d87a096217a162.tar.gz librebootfr-89c7df5adcf1a01fb530b84198d87a096217a162.zip |
Use grub-mklayout instead of grub-kbdcomp
grub-mklayout was the intended program to use for generating compiled
GRUB keylayouts. Somewhere along the way grub-kbdcomp was erroneously
substituted in its place.
Diffstat (limited to 'projects/grub/grub-helper')
-rwxr-xr-x | projects/grub/grub-helper | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/projects/grub/grub-helper b/projects/grub/grub-helper index 342b03eb..dca9b3a5 100755 --- a/projects/grub/grub-helper +++ b/projects/grub/grub-helper @@ -82,10 +82,10 @@ grub_build_utils() { grub_build_layout() { local raw_layout="${1##*/}" local raw_layout_path="$1" - local grub_kbdcomp="${sources_path}/grub-kbdcomp" + local grub_mklayout="${sources_path}/grub-mklayout" local grub_kbd_layout="${build_path}/${raw_layout}.gkb" - "${grub_kbdcomp}" --output="${grub_kbd_layout}" "${raw_layout_path}" + "${grub_mklayout}" --output="${grub_kbd_layout}" --input="${raw_layout_path}" } grub_build_bootable_image() { |