From 0adcda536037293813588ca46d08cf725cd68642 Mon Sep 17 00:00:00 2001 From: Stefan Lankes Date: Sun, 28 May 2017 18:11:44 +0200 Subject: [PATCH] Updated Boot HermitCore from a raw image (markdown) --- Boot-HermitCore-from-a-raw-image.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/Boot-HermitCore-from-a-raw-image.md b/Boot-HermitCore-from-a-raw-image.md index d6290f1..55656c7 100644 --- a/Boot-HermitCore-from-a-raw-image.md +++ b/Boot-HermitCore-from-a-raw-image.md @@ -67,3 +67,16 @@ sudo cp /opt/hermit/x86_64-hermit/extra/benchmarks/stream /mnt/boot/ ``` **Note:** `loop1`is the MBR, while `loop2`is our partition. + +Finally, the configuration file `/mnt/boot/grub.cfg` has been created for the bootloader. In this case, the configuration file looks as follows: + +```bash +default=0 +timeout=0 + +menuentry "stream" { + multiboot /boot/ldhermit.elf -uart=io:0x3f8 + module /boot/stream + boot +} +```