diff options
-rwxr-xr-x | share/hydra/bootless | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/share/hydra/bootless b/share/hydra/bootless index 86e27f0..9bad724 100755 --- a/share/hydra/bootless +++ b/share/hydra/bootless @@ -133,6 +133,12 @@ EOF echo "Error: grub-install failed (errno: $?)." exit 1 fi + + # TODO: consider an alternative scenario: + # https://www.gnu.org/software/grub/manual/html_node/Installing-GRUB-using-grub_002dinstall.html#Installing-GRUB-using-grub_002dinstall + #sudo losetup /dev/loop0 /dev/sdb1 + #sudo mount /dev/loop0 /media/usb/ + #sudo grub-install --boot-directory=/media/usb/ --allow-floppy --force /dev/loop0 # Finalize #rm -f ${devicemap} |