Changes between Version 31 and Version 32 of WikiStart


Ignore:
Timestamp:
Mar 25, 2012, 7:43:48 AM (12 years ago)
Author:
David Azarewicz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v31 v32  
    9595 * Open Watcom
    9696 * The DDK
     97 * The OS/2 Toolkit
     98 * Zip
    9799
    98100To build the driver:
    99  * edit the Makefile in the root directory and change the DDK and WATCOM variables so they point to the locations of the DDK and the Watcom compiler on your system.
    100  * type wmake
     101 * Copy setenv.cmd.template to setenv.cmd and edit the paths to the WATCOM, the DDK, and the TOOLKIT to suit your system.
     102 * Execute setenv.cmd
     103 * type wmake all to make all of the drivers, or
     104 * cd to the directory for the driver you want to make.
     105 * Type wmake
    101106
    102107= Adding a new driver =
    103108
    104 To add a new driver, simply create another directory off the root for your hardware specific source files.  You can use the files in the nveth directory and/or the files in the e1000e directory as an example of how to build the hardware portion of the driver.  Ideally, you should not need to edit any of the common files.  You will also need to edit the Makefile to include a target for your new driver.
     109To add a new driver, simply create another directory off the root for your hardware specific source files.  You can use the files in the r8169 directory and/or the files in the e1000e directory as an example of how to build the hardware portion of the driver.  Ideally, you should not need to edit any of the common files.  You will also need to edit the Makefile to include a target for your new driver.
    105110
    106111= Support =