summaryrefslogtreecommitdiffstats
path: root/src/include/dev.h
Commit message (Collapse)AuthorAgeFilesLines
* Dead code removal.Michael Brown2007-07-141-280/+0Star
| | | | Kill off use of etherboot.h outside drivers/net.
* Move include/buffer.h to include/gpxe/buffer.hMichael Brown2007-01-111-1/+1
|
* Add "name" field to struct device to allow human-readable hardware deviceMichael Brown2007-01-101-3/+3
| | | | | | | | | | | names. Add "dev" pointer in struct net_device to tie network interfaces back to a hardware device. Force natural alignment of data types in __table() macros. This seems to prevent gcc from taking the unilateral decision to occasionally increase their alignment (which screws up the table packing).
* Kill off the "all devices are boot devices" ideaMichael Brown2006-05-161-0/+4
|
* Header rearrangement.Michael Brown2006-04-241-2/+2
| | | | | | | | | I want to get to the point where any header in include/ reflects a standard user-level header (e.g. a POSIX header), while everything that's specific to gPXE lives in include/gpxe/. Headers that reflect a Linux header (e.g. if_ether.h) should also be in include/gpxe/, with the same name as the Linux header and, preferably, the same names used for the definitions.
* Assertions are now handled via the POSIX-like <assert.h>.Michael Brown2006-03-231-8/+3Star
|
* Use __unused instead of __used for static data structures.Michael Brown2005-05-171-4/+3Star
| | | | Remove compiler.h defines from osdep.h
* Protocols now load data into a buffer; they don't execute it.Michael Brown2005-05-091-9/+4Star
|
* dev.c uses the new tables infrastructure.Michael Brown2005-04-271-11/+4Star
|
* Added back in the actual call to load().Michael Brown2005-04-261-0/+16
|
* ISA bus driver updated to report devices as present only if a driverMichael Brown2005-04-261-1/+1
| | | | | thinks they are. Other bus drivers modified for consistency.
* Renamed describe to describe_device for consistencyMichael Brown2005-04-251-1/+1
|
* Added "name" field to bus structure.Michael Brown2005-04-251-2/+3
|
* Should be an <= comparison, not a < comparison.Michael Brown2005-04-231-2/+2
| | | | (Detected using "make symcheck" :)
* Tweaked API to minimise changes to existing drivers even further.Michael Brown2005-04-211-1/+1
|
* Made macros more like the previous driver API, to minimise requiredMichael Brown2005-04-211-3/+3
| | | | changes.
* Created a bus/device API that allows for the ROM prefix to specify anMichael Brown2005-04-211-61/+246
| | | | | initial device, and will also allow for e.g. a device menu to be presented to the user.
* Fix BOOT_DRIVER to assign unique and meaningful name to structure.Michael Brown2005-04-141-2/+2
|
* Separate out bus-scanning and device-probing logic.Michael Brown2005-04-141-5/+19
|
* Allow for multiple BOOT_DRIVER()s in the same file, provided that theyMichael Brown2005-04-141-1/+1
| | | | have different probe functions.
* Use the magic of common symbols to allow struct dev to effectively grow atMichael Brown2005-04-141-13/+14
| | | | link time to accommodate whatever bus objects are included.
* Add EISA as a bus type.Michael Brown2005-04-131-4/+11
|
* Add MCA devicesMichael Brown2005-04-131-0/+3
|
* Add print_info method to dev_operations.Michael Brown2005-04-131-0/+4
|
* Fix up find_pci_device so that it can be used for scanning for devicesMichael Brown2005-04-121-1/+6
| | | | *other* than the main boot device.
* New device probing mechanismMichael Brown2005-04-121-107/+39Star
|
* Initial revisionMichael Brown2005-03-081-0/+126