summaryrefslogtreecommitdiffstats
path: root/resources/utilities
diff options
context:
space:
mode:
authorFrancis Rowe <info@gluglug.org.uk>2015-10-14 20:02:18 (EDT)
committer Francis Rowe <info@gluglug.org.uk>2015-10-14 20:02:18 (EDT)
commitcb0f79033fa366f1348629e66cf567b979db84ef (patch)
tree0c461827ff1d2bcdbc4df240b0ef70a0eead2383 /resources/utilities
parente042a4acb38f49f31a8314786d21ed07db272fca (diff)
downloadlibreboot-cb0f79033fa366f1348629e66cf567b979db84ef.zip
libreboot-cb0f79033fa366f1348629e66cf567b979db84ef.tar.gz
libreboot-cb0f79033fa366f1348629e66cf567b979db84ef.tar.bz2
grub-assemble: fix bug: keymaps not being included
Diffstat (limited to 'resources/utilities')
-rwxr-xr-xresources/utilities/grub-assemble/gen.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/utilities/grub-assemble/gen.sh b/resources/utilities/grub-assemble/gen.sh
index c7579b3..4b9c9f7 100755
--- a/resources/utilities/grub-assemble/gen.sh
+++ b/resources/utilities/grub-assemble/gen.sh
@@ -57,7 +57,7 @@ then
--install-modules="${grub_install_modules}" \
/boot/grub/grub.cfg="../../../resources/grub/config/grub_memdisk.cfg" \
/dejavusansmono.pf2="../../../resources/grub/font/dejavusansmono.pf2" \
- "${keymaps}"
+ ${keymaps}
elif [ "${1}" = "txtmode" ]
then
# Generate the grub.elf (txtmode)
@@ -71,7 +71,7 @@ then
--install-modules="${grub_install_modules}" \
/boot/grub/grub.cfg="../../../resources/grub/config/grub_memdisk.cfg" \
/memtest="../../../memtest86plus/memtest" \
- "${keymaps}"
+ ${keymaps}
else
printf "grub-assemble gen.sh: invalid mode '%s'\n" "${1}"
exit 1