summaryrefslogtreecommitdiff
path: root/Mach
diff options
context:
space:
mode:
authorOgnyan Kulev <ogi@fmi.uni-sofia.bg>2002-11-10 12:36:00 +0000
committerOgnyan Kulev <ogi@fmi.uni-sofia.bg>2002-11-10 12:36:00 +0000
commit75c88abc4afdbe5720edc9834b9f94a0d7953263 (patch)
treebb60882d7bfcafdb8b78722ab84ddc9fda8e0393 /Mach
parentde0576f4f38ab095c51ed7414501fe96e768c93b (diff)
none
Diffstat (limited to 'Mach')
-rw-r--r--Mach/BuildingOskitMach.mdwn12
1 files changed, 6 insertions, 6 deletions
diff --git a/Mach/BuildingOskitMach.mdwn b/Mach/BuildingOskitMach.mdwn
index a9fc825a..81d9919b 100644
--- a/Mach/BuildingOskitMach.mdwn
+++ b/Mach/BuildingOskitMach.mdwn
@@ -96,12 +96,12 @@ Different to its half sister, the OSKit-Mach kernel does _not_ need a cross comp
**_Building:_**
-Instead of using \`make kernel' to build kernel, in OSKit-Mach you have to use \`make kernel-DRIVERS', where DRIVERS is \`DRIVER+DRIVER+...+DRIVER' (a list of drivers separated by \`+'). DRIVER can be one of:
+Instead of using `make kernel` to build kernel, in OSKit-Mach you have to use <code>make kernel-<var>DRIVERS</var></code>, where <var>DRIVERS</var> is <code><var>DRIVER</var>+<var>DRIVER</var>+...+<var>DRIVER</var></code> (a list of drivers separated by `+`). <var>DRIVER</var> can be one of:
-* \`ide'
-* \`floppy'
-* \`ethernet\_ETHDRV' where ETHDRV is taken from 'oskit/oskit/dev/linux\_ethernet.h'.
-* \`scsi\_SCSIDRV' where SCSIDRV is taken from \`oskit/oskit/dev/linux\_scsi.h'.
+* `ide`
+* `floppy`
+* <code>ethernet\_<var>ETHDRV</var></code> where <var>ETHDRV</var> is taken from `oskit/oskit/dev/linux_ethernet.h`.
+* <code>scsi\_<var>SCSIDRV</var></code> where <var>SCSIDRV</var> is taken from `oskit/oskit/dev/linux_scsi.h`.
Thus, to build a IDE capable kernel with 3Com Vortex Boomerang support you use the following:
@@ -109,7 +109,7 @@ Thus, to build a IDE capable kernel with 3Com Vortex Boomerang support you use t
# sudo make install
# sudo gzip -f /gnu/boot/oskit-mach
-If you want to use tftp to download the kernel from Grub and don't care about the symbols I recommend either stripping or removing the --debug and -g statements.
+If you want to use tftp to download the kernel from Grub and don't care about the symbols I recommend either stripping or removing the `--debug` and `-g` statements.
## <a name="Debugging"> Debugging </a>