summaryrefslogtreecommitdiffstats
path: root/resources/scripts/helpers/build/roms/withgrub
diff options
context:
space:
mode:
Diffstat (limited to 'resources/scripts/helpers/build/roms/withgrub')
-rwxr-xr-xresources/scripts/helpers/build/roms/withgrub3
1 files changed, 2 insertions, 1 deletions
diff --git a/resources/scripts/helpers/build/roms/withgrub b/resources/scripts/helpers/build/roms/withgrub
index 7283c1a..943afbf 100755
--- a/resources/scripts/helpers/build/roms/withgrub
+++ b/resources/scripts/helpers/build/roms/withgrub
@@ -44,8 +44,9 @@ do
cd "../../../coreboot"
# GRUB configuration files
- for keymap in $(for keylayout in ../resources/utilities/grub-assemble/keymap/original/*; do printf "%s\n" "${keylayout##*/}"; done)
+ for keylayout in ../resources/utilities/grub-assemble/keymap/original/*
do
+ keymap="${keylayout##*/}"
cat "../resources/grub/config/extra/common.cfg" > "grub_${keymap}_${romtype}.cfg"
cat "../resources/grub/config/extra/${romtype}.cfg" >> "grub_${keymap}_${romtype}.cfg"
printf "keymap %s\n" "${keymap}" >> "grub_${keymap}_${romtype}.cfg"