Skip to content

Commit

Permalink
Merge pull request #195 from grml/grub-amd64
Browse files Browse the repository at this point in the history
45-grub-images: fix quoting
  • Loading branch information
zeha authored Dec 3, 2024
2 parents 6de4d9f + 2ffb6cf commit d7fe8c7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion etc/grml/fai/config/scripts/GRMLBASE/45-grub-images
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,11 @@ for arch in "${ARCHS[@]}" ; do
arm64-efi) filename=/boot/bootaa64.efi ;;
esac

read -r -a modules <<< "${ADDITIONAL_MODULES[$arch]}"
$ROOTCMD grub-mkimage -O "$arch" -o "$filename" --prefix=/boot/grub/ --config="$TMP_CONFIG" \
echo iso9660 part_msdos search_fs_file test \
fat ext2 reiserfs xfs btrfs squash4 part_gpt lvm \
"${ADDITIONAL_MODULES[$arch]}"
"${modules[@]}"
done

rm -f "${target}/${TMP_CONFIG}"
Expand Down

0 comments on commit d7fe8c7

Please sign in to comment.