diff options
-rwxr-xr-x | resources/scripts/helpers/build/roms/withgrub_helper | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/resources/scripts/helpers/build/roms/withgrub_helper b/resources/scripts/helpers/build/roms/withgrub_helper index 7dbd9f6b..4869ae74 100755 --- a/resources/scripts/helpers/build/roms/withgrub_helper +++ b/resources/scripts/helpers/build/roms/withgrub_helper @@ -99,8 +99,10 @@ do fi # Add the correct GRUB configuration file for this image. - 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##*/}" + # copy the images based on the keymap cp "${boardtarget}_${romtype}.rom" "${boardtarget}_${keymap}_${romtype}.rom" |