diff options
-rw-r--r-- | Mach/BuildingOskitMach.mdwn | 12 |
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> |