From a0981541f7714a781e449216752cbfbafb21106c Mon Sep 17 00:00:00 2001 From: Stefan Lankes Date: Sun, 28 May 2017 17:30:04 +0200 Subject: [PATCH] Updated Boot HermitCore from a raw image (markdown) --- Boot-HermitCore-from-a-raw-image.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Boot-HermitCore-from-a-raw-image.md b/Boot-HermitCore-from-a-raw-image.md index e244b61..81c4a89 100644 --- a/Boot-HermitCore-from-a-raw-image.md +++ b/Boot-HermitCore-from-a-raw-image.md @@ -3,8 +3,10 @@ Sometime is it useful to boot HermitCore from a raw image. For instance, [Google In this tutorial, an image will be created for the application _stream_. At first, we create with `dd` an raw file. A size of 50 Mb (=512 block size * 102400 block) is for `stream` large enough. ```bash -$ dd if=/dev/zero of=stream.img bs=512 count=102400 +$ dd if=/dev/zero of=stream.raw bs=512 count=102400 102400+0 records in 102400+0 records out 52428800 bytes (52 MB, 50 MiB) copied, 0.138028 s, 380 MB/s -``` \ No newline at end of file +``` + +Like a normal hard disk, we have to partition the image. \ No newline at end of file