Changes between Version 31 and Version 32 of WikiStart
- Timestamp:
- Mar 25, 2012, 9:43:48 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiStart
v31 v32 95 95 * Open Watcom 96 96 * The DDK 97 * The OS/2 Toolkit 98 * Zip 97 99 98 100 To 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 101 106 102 107 = Adding a new driver = 103 108 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 nvethdirectory 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.109 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 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. 105 110 106 111 = Support =