configure 508 B

12345678910111213141516171819202122
  1. #!/usr/bin/env bash
  2. #
  3. # grub-pc-bin: without it, grub-mkrescue just fails, and you have no idea why!
  4. # We love you, GRUB.
  5. # https://superuser.com/questions/603051/grub-mkrescue-not-producing-bootable-image/973021#973021
  6. # https://github.com/cirosantilli/x86-bare-metal-examples/issues/5#issuecomment-377948357
  7. # https://wiki.osdev.org/Bare_Bones
  8. #
  9. sudo apt-get install \
  10. bochs \
  11. bochs-sdl \
  12. build-essential \
  13. gcc-multilib \
  14. gdb \
  15. gnu-efi \
  16. grub \
  17. grub-pc-bin \
  18. nasm \
  19. qemu \
  20. xorriso\
  21. ;