This repository has been archived on 2022-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
|
#!/bin/sh
|
|
|
|
mount -t proc proc /mnt/gentoo/proc
|
|
mount --rbind /sys /mnt/gentoo/sys
|
|
mount --rbind /dev /mnt/gentoo/dev
|
|
|
|
chroot /mnt/gentoo cat /grub.shell | /sbin/grub --no-floppy --batch
|
|
|
|
umount /mnt/gentoo/proc
|
|
umount /mnt/gentoo/sys
|
|
umount /mnt/gentoo/dev
|
|
|