summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorRobert de Bath <rdebath@poboxes.com>1996-03-24 17:45:55 +0100
committerLubomir Rintel <lkundrak@v3.sk>2013-10-23 23:29:43 +0200
commitfe22c37817ce338fbbc90b239320248c270957fa (patch)
treed9550410c4a20bdd382fcc58d2d3d7c5e04e5245 /README
parenta7aba15e8efffb1c5d3097656f1a93955a64f01f (diff)
parent42192453ea219b80d0bf9f41e51e36d3d4d0740b (diff)
downloaddev86-fe22c37817ce338fbbc90b239320248c270957fa.tar.gz
Import Dev86-0.0.4.tar.gzv0.0.4
Diffstat (limited to 'README')
-rw-r--r--README31
1 files changed, 31 insertions, 0 deletions
diff --git a/README b/README
new file mode 100644
index 0000000..d117a44
--- /dev/null
+++ b/README
@@ -0,0 +1,31 @@
+This is a development environment for ELKS-86
+
+You have to do make install as root
+Or:
+
+$ make bcc
+$ su -c "make install-bcc"
+$ make library
+$ su -c "make install-lib"
+$ make elksemu
+$ su -c "make install-emu"
+$ make tests
+
+All from the top directory.
+Once this is done new files will be /lib/elksemu, /usr/bcc/* and /usr/bin/bcc
+
+The bcc command defaults to using /usr/bcc/include and /usr/bcc/lib. Beware
+that /usr/bcc/include is a symlink into this directory.
+
+The as86 and ld86 with this are _different_ from the ones needed for the
+linux-i386 kernel but can replace them, the kernel-i386 ones _will_ _not_
+work correctly here!
+
+To compile the various tools as Linux-8086 binaries cd into the relevent
+directory and do a "make clean ; make" from there, note you'll have to
+do "ld" before "as". Currently bcc won't work this way.
+
+I _strongly_ suggest you install the kernel patch in the elksemu directory
+in your Linux-i386 kernel, it makes things _far_ easier.
+
+-Rob.