aboutsummaryrefslogtreecommitdiffstats
path: root/extras/mini-os/README
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2008-03-19 16:20:44 +0000
committerKeir Fraser <keir.fraser@citrix.com>2008-03-19 16:20:44 +0000
commit37c5428f8d0a372a6ed928a21ab3353d944bca09 (patch)
tree15e0b46e69a318e2a62b469359111f2b6e73ec6a /extras/mini-os/README
parentdf4e524d8dd89f83a848e2641b3d2bcbb07807d9 (diff)
downloadxen-37c5428f8d0a372a6ed928a21ab3353d944bca09.tar.gz
xen-37c5428f8d0a372a6ed928a21ab3353d944bca09.tar.bz2
xen-37c5428f8d0a372a6ed928a21ab3353d944bca09.zip
minios: update README
Signed-off-by: Samuel Thibault <samuel.thibault@eu.citrix.com>
Diffstat (limited to 'extras/mini-os/README')
-rw-r--r--extras/mini-os/README32
1 files changed, 24 insertions, 8 deletions
diff --git a/extras/mini-os/README b/extras/mini-os/README
index afd880733a..41573aa9eb 100644
--- a/extras/mini-os/README
+++ b/extras/mini-os/README
@@ -13,18 +13,34 @@ This includes:
* registering virtual interrupt handlers (for timer interrupts)
* a simple page and memory allocator
* minimal libc support
+ * minimal Copy-on-Write support
+ * network, block, framebuffer support
+ * transparent access to FileSystem exports (see tools/fs-back)
-Stuff it doesn't show:
-
- * modifying page tables
- * network code
- * block-device code
+- to build it just type make.
+- to build it with TCP/IP support, download LWIP 1.3 source code and type
-- to build it just type make.
+ make LWIPDIR=/path/to/lwip/source
+
+- to build it with much better libc support, see the stubdom/ directory
- to start it do the following in domain0 (assuming xend is running)
# xm create domain_config
-this starts the kernel and prints out a bunch of stuff and then once
-every second the system time.
+This starts the kernel and prints out a bunch of stuff and then once every
+second the system time.
+
+If you have setup a disk in the config file (e.g.
+disk = [ 'file:/tmp/foo,hda,r' ] ), it will loop reading it. If that disk is
+writable (e.g. disk = [ 'file:/tmp/foo,hda,w' ] ), it will write data patterns
+and re-read them.
+
+If you have setup a network in the config file (e.g. vif = [''] ), it will
+print incoming packets.
+
+If you have setup a VFB in the config file (e.g. vfb = ['type=sdl'] ), it will
+show a mouse with which you can draw color squares.
+
+If you have compiled it with TCP/IP support, it will run a daytime server on
+TCP port 13.