Device Management: Difference between revisions

From OSDev.wiki
Jump to navigation Jump to search
[unchecked revision][unchecked revision]
Content deleted Content added
New page: {{stub}} == Device Driver Interfaces == Category:Kernel
 
No edit summary
Line 1: Line 1:
{{stub}}
{{stub}}
== Device Driver Interfaces ==
== Device Driver Interfaces ==
=== Design ===
{{stub}}

=== Uniform Driver Interface ===
Project UDI is a driver interface intented to be binary portable. It is not very widespread; for example, due to philosophical concerns, Linux did not embrace UDI.
* [http://www.projectudi.org/ www.projectudi.org]
=== Extensible Driver Interface ===
EDI is a driver interface intented to be source code portable and fairly simple in implementation, so that hobby small hobby oses may share driver code base.
* [http://www.jamesmolloy.co.uk/edi/ EDI specification]


[[Category:Kernel]]
[[Category:Kernel]]

Revision as of 23:42, 19 July 2008

This page is a stub.
You can help the wiki by accurately adding more contents to it.

Device Driver Interfaces

Design

This page is a stub.
You can help the wiki by accurately adding more contents to it.

Uniform Driver Interface

Project UDI is a driver interface intented to be binary portable. It is not very widespread; for example, due to philosophical concerns, Linux did not embrace UDI.

Extensible Driver Interface

EDI is a driver interface intented to be source code portable and fairly simple in implementation, so that hobby small hobby oses may share driver code base.