When a PCI network card is detected, its PCI ID is used to identify it and choose an appropriate driver. Each network card driver has a list of PCI IDs it supports.
The format of a PCI ID is VVVV:DDDD
, where the VVVV
field is called the Vendor ID and the DDDD
field is called the Device ID.
lspci -nn
. Look for Ethernet controller
.show net0/busid
. Ignore for first byte, e.g. busid 01:10:ec:81:39
→ PCI ID 10ec:8139
.gpxebot
on #etherboot IRC like this: gpxebot: lspci 10ec:8139
.PCI_ROM(0x10ec, 0x8139, "rtl8139", "Realtek 8139", 0),
If there is no native gPXE driver for a network card, there are two choices:
Before falling back to the UNDI driver, speak with the developers about the effort required to add native driver support for the network card. Sometimes there is already a native driver and it simply needs a line added with the PCI ID of the network card.
There are developers in the community who do paid driver development work and can help you add support for new network cards. Ask on the mailing list.
No. Although the gPXE driver API is similar to the Linux API, drivers are not compatible at the source or binary level. Open source drivers can be ported to gPXE or used as a starting point for developing gPXE drivers. This is especially useful for network cards where no datasheet is available from the vendor.
You must be able to program in C. Device driver development knowledge on other platforms is useful but not required.
Michael Decker's gPXE driver API documentation shows the interface that a driver must implement.
Study the code in gpxe/src/drivers/net
. The rtl8139
and r8169
drivers are good examples. Note that some drivers are not written for the gPXE API but use a wrapper for the legacy Etherboot API instead. New drivers should use the gPXE API.
Linux Device Drivers is a good reference for understanding Linux drivers and learning general driver development concepts.
The UNDI driver is a generic driver that works on network cards that have a vendor UNDI ROM. The ROM contains driver code that is supposed to conform to the PXE/UNDI specification. gPXE can load the UNDI driver and use it instead of a native driver.
Depending on the gPXE image type, UNDI support works as follows:
undionly.kpxe
is loaded from a vendor PXE stack and uses UNDI on the network card that it was booted from.gpxe
) or undi
images can load the UNDI for PCI network cards. The network boot ROM must be enabled in the BIOS in order for the UNDI ROM to be visible to gPXE. Note that only the first network card is supported with UNDI since multiple instances of UNDI is unreliable and cannot be supported.