Files
x86-bare-metal-examples/configure
Ciro Santilli f2b7146418 Install the missing grub-pc-bin
grub-mkrescue did not work otherwise.
2018-04-02 21:49:56 +01:00

22 lines
508 B
Bash

#!/usr/bin/env bash
#
# grub-pc-bin: without it, grub-mkrescue just fails, and you have no idea why!
# We love you, GRUB.
# https://superuser.com/questions/603051/grub-mkrescue-not-producing-bootable-image/973021#973021
# https://github.com/cirosantilli/x86-bare-metal-examples/issues/5#issuecomment-377948357
# https://wiki.osdev.org/Bare_Bones
#
sudo apt-get install \
bochs \
bochs-sdl \
build-essential \
gcc-multilib \
gdb \
gnu-efi \
grub \
grub-pc-bin \
nasm \
qemu \
xorriso\
;