How to add an (S)VGA driver to XFree86 : Setting Up The Build Information
Previous: Directory Tree Structure
Next: The Bank-Switching Functions

4. Setting Up The Build Information

This section describes the peripheral configuration and build steps that must be performed to set up for your new driver. The steps are the same whether you are building from the source tree of from the Link Kit; only the locations of the files is different. Here are the configuration steps that must be followed:

  1. Choose the name for your driver subdirectory and data structures. Since the current driver scheme allows (in fact, encourages) putting drivers for multiple related chipsets in a single driver, it is usually best to use the vendor name, rather than a chipset version. The fact that older XFree86 drivers do not follow this convention should not deter you from using it now - most of that code was developed before the driver interface had been made flexible and extensible. For this documentation, we'll use chips from the SuperDuper Chips vendor. Hence, we'll use `sdc' for the name of the driver.
  2. Decide whether your driver will support the color server, the monochrome server, or both. For this documentation, we will assume that both the color and monochrome servers will be supported. If you intend to support only the color server, the steps for the monochrome server can be ignored. If you intend to support only the monochrome server, the steps for the color server listed should be performed for the monochrome server, and the monochrome steps ignored. Most of the existing drivers support only the color or both servers; the ``generic'' driver is the only driver (currently) that supports just the monochrome server.
  3. Create your driver directories:
  4. Set up the Imakefile parameters to cause your driver to be built:
  5. Now copy the prototype files into your new directories:
  6. Edit each of the files you've just copied, and replace `stub' with `sdc' and `STUB' with `SDC' wherever they appear.
That's all the prep work needed. Now it's time to work on the actual driver.


How to add an (S)VGA driver to XFree86 : Setting Up The Build Information
Previous: Directory Tree Structure
Next: The Bank-Switching Functions