#! /bin/sh -e

# If we're installing grub-efi, it wants /sys mounted in the
# target. Maybe /proc too?
mount -t sysfs sys /target/sys || true
mount -t proc procfs /target/proc || true

grub-installer /target
