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 +} +```