1
0
Fork 0
mirror of https://github.com/hermitcore/libhermit.git synced 2025-03-30 00:00:15 +01:00

Updated Boot HermitCore from a raw image (markdown)

Stefan Lankes 2017-05-28 18:11:44 +02:00
parent b6ea814aa9
commit 0adcda5360

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