about summary refs log tree commit diff stats
path: root/shell
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-08-10 08:59:00 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-08-10 08:59:00 -0700
commit350a255134c7d7efb6d6c456c8d50bf15f96f26d (patch)
treef4d1155dd658234d73c4ee683717100f13f98aed /shell
parentb0a83af0e56a3f1d32059554c06734fff58bebc5 (diff)
downloadmu-350a255134c7d7efb6d6c456c8d50bf15f96f26d.tar.gz
new tool: creating a data disk
Diffstat (limited to 'shell')
-rw-r--r--shell/README.md8
1 files changed, 7 insertions, 1 deletions
diff --git a/shell/README.md b/shell/README.md
index 2843d0f1..3431638a 100644
--- a/shell/README.md
+++ b/shell/README.md
@@ -22,7 +22,13 @@ Currently runs a tiny dialect of Lisp. Steps to run it from the top-level:
   dd if=shell/data.limg of=data.img conv=notrunc
   ```
 
-  Run with data disk (and 2GB of RAM):
+  Equivalently, use `tools/image-data`.
+
+  ```sh
+  tools/image-data 10 < shell/data.limg
+  ```
+
+3. Run with data disk (and 2GB of RAM):
   ```sh
   qemu-system-i386 -m 2G -hda code.img -hdb data.img
   ```