-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This outlines how a Freedom Metal driver should be written. Signed-off-by: Keith Packard <[email protected]>
- Loading branch information
1 parent
58a0f7e
commit 3d465ad
Showing
3 changed files
with
734 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
digraph "Freedom Metal Driver Tree" { | ||
rankdir=LR; | ||
edge [arrowsize=0.5; decorate=true; style="setlinewidth(2)"]; | ||
node [shape=box; arrowsize=0.5; fontsize=12; height=0.2;]; | ||
"root" [label="Top of Driver Tree"]; | ||
"src_drivers" [label="drivers"]; | ||
"metal_drivers" [label="drivers"]; | ||
"templates_metal" [label="metal"]; | ||
"templates_metal_platform" [label="platform"]; | ||
"templates_metal_private" [label="private"]; | ||
"root" -> "src" [weight=1000]; | ||
"root" -> "metal"; | ||
"root" -> "templates"; | ||
"src" -> "src_drivers"; | ||
"src_drivers" -> "metal_<driver>.c"; | ||
"metal" -> "metal_drivers" | ||
"metal_drivers" -> "metal_<driver>.h"; | ||
"templates" -> "MANIFEST.ini"; | ||
"templates" -> "templates_metal"; | ||
"templates_metal" -> "templates_metal_platform"; | ||
"templates_metal" -> "templates_metal_private"; | ||
"templates_metal_platform" -> "metal_platform_<driver>.h.j2"; | ||
"templates_metal_private" -> "metal_private_<driver>.h.j2"; | ||
} |
Oops, something went wrong.