summaryrefslogtreecommitdiff
path: root/Mach
diff options
context:
space:
mode:
authorJoachim Nilsson <joachim@gnufans.org>2002-07-20 16:02:00 +0000
committerJoachim Nilsson <joachim@gnufans.org>2002-07-20 16:02:00 +0000
commitc5a98575b6fedbb0aac0c237aa08c77d3b45f8ea (patch)
treebd2c5526bb3befe19e266b27bd6686bd41ea4915 /Mach
parentc642b66dd8badef9441c5743ff4b85a007014d01 (diff)
none
Diffstat (limited to 'Mach')
-rw-r--r--Mach/BuildingOskitMach.mdwn47
1 files changed, 34 insertions, 13 deletions
diff --git a/Mach/BuildingOskitMach.mdwn b/Mach/BuildingOskitMach.mdwn
index 0dd10369..7f25d598 100644
--- a/Mach/BuildingOskitMach.mdwn
+++ b/Mach/BuildingOskitMach.mdwn
@@ -1,3 +1,5 @@
+## <a name="Table_of_Contents"> Table of Contents </a>
+
%TOC%
This is a brief Building OSKit Mach HowTO. It covers everything from getting the latest sources of both the [OSKit](http://www.cs.utah.edu/flux/oskit/) and the OSKit branch of the GNUmach kernel. There is also [another guide](http://www.etherhogz.org/doc/oskit-mach.html). Down to building and debugging them. On May 27 after the [[GnuMach]] 1.3 release, Roland McGrath merged OSKit Mach in the [[GnuMach]] 2.x mainline.
@@ -6,47 +8,66 @@ This is a brief Building OSKit Mach HowTO. It covers everything from getting the
First you need to checkout the relevant sources.
-### <a name="Accessing_the_FLUX_groups_CVS_or"> </a> Accessing the FLUX groups CVS, or FTP
+### <a name="Accessing_the_FLUX_groups_CVS_or"> </a> Accessing the FLUX groups' CVS, or FTP
You can use either the bleeding edge OSKit from CVS, or the latest public release. The latter is preferrable!
-CVS:
+**_CVS:_**
CVSROOT=":pserver:anoncvs@leak.cs.utah.edu:/cvs"
CVS_RSH=ssh
cvs -z3 co oskit
-St. Patricks day 2002 release: <ftp://flux.cs.utah.edu/flux/oskit/oskit-20020317.tar.gz>
+**_FTP:_** St. Patricks day 2002 release: <ftp://flux.cs.utah.edu/flux/oskit/oskit-20020317.tar.gz>
Valentine's day 2001 release: <ftp://flux.cs.utah.edu/flux/oskit/oskit-20010214.tar.gz>
-### <a name="Accessing_GNU_CVS"> </a> Accessing GNU CVS
+### <a name="Accessing_the_GNU_CVS"> </a> Accessing the GNU CVS
+
+The recommended document for accessing the Hurd CVS on [Savannah](http://savannah.gnu.org) is at
-Setup your environment with the CVSROOT variable and checkout gnumach.
+This is only a brief restatement, which may ormay not be accurate. Setup your environment with the CVSROOT variable. How you do this may differ between shells.
CVSROOT=":pserver:anoncvs@anoncvs.gnu.org:/cvsroot/hurd"
- cvs -z3 co -d oskit-mach gnumach
+
+**_Gnu Mach:_**
+
+All development, apart from critical bug fixes, is done on the upcoming 2.0 release. Previously the oskit-branch of gnumach.
+
+ cvs -z3 co -d gnumach
In case you have been tracking the oskit-branch and want to move to the current HEAD branch you can issue the following instead to update your tree.
cvs -z3 update -r HEAD -Pd
- Followed by regular updates without the '-r HEAD'
+**_The Hurd servers:_**
+
+In case you want to build the Hurd servers as well, you can check them out too:
+
+ cvs -z3 co hurd
+
+**_Inteface generator:_**
+
+See the [[MachInterfaceGenerator]] for more information.
+
+Check it out using
+
+ cvs -z3 co mig
## <a name="Building"> Building </a>
-### <a name="OSKit"> </a> OSKit
+### <a name="The_OSKit"> </a> The OSKit
The attached [[ATTACHURLmodulesx86pc]] file is my personal setup, it works for me. Now, how to configure and build the OSKit.
-Configuring:
+**_Configuring:_**
# cd oskit-20020317/
# mkdir build
# cd build
# ../configure --prefix=/usr/local --enable-debug
-Building:
+**_Building:_**
# make
# sudo make install
@@ -59,14 +80,14 @@ To build any Mach kernel you need an interface generator, a mig. If your host sy
This will install the i386-gnu-mig in /usr/bin for you.
-Configuring:
+**_Configuring:_**
# cd oskit-mach
# mkdir build
# cd build
# CFLAGS="-g" MIG=i386-gnu-mig OSKIT_LIBDIR=/usr/local/lib/oskit ../configure --prefix=/gnu --enable-debug
-Building:
+**_Building:_**
# make
# sudo make install
@@ -76,7 +97,7 @@ Building:
For now, see the [[RemoteDebugOskitMach]] page.
-# <a name="Attachments"> Attachments </a>
+## <a name="Attachments"> Attachments </a>
* [[ATTACHURLmodulesx86pc]]: Modules to build in OSKit