From 2fc41d34cfd960e79a7ff1cac620dd29c1baa2db Mon Sep 17 00:00:00 2001 From: Alexey Frunze Date: Sun, 7 Dec 2014 21:51:06 -0800 Subject: [PATCH] Correct sd card image name. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ffa1366..16c5d93 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ To compile the kernel and build a filesystem image, run: $ make ``` -A resulting root filesystem image is in file `sdcard.rd`. +A resulting root filesystem image is in file `sdcard.img`. A kernel is in file `unix.hex` in your target board subdirectory. @@ -82,7 +82,7 @@ Win32DiskImager utility (https://launchpad.net/win32-image-writer/+download). On Linux, run: ```shell -$ sudo dd if=sdcard.rd of=/dev/XYZ +$ sudo dd if=sdcard.img of=/dev/XYZ ``` Here `XYZ` is a device name of SD card, as recognized by Linux (sdb in my case).