summaryrefslogtreecommitdiff
path: root/libdde_linux26/README
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2012-02-19 06:14:24 +0000
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2012-02-19 06:14:24 +0000
commit6fafeb146e9efd59140ea58cebd7dd38ae9a6379 (patch)
tree7db89ba6a28932514b105d620bba4884ec332ec3 /libdde_linux26/README
parent38c2c2458e3f4ecb329ff35621806252aac209b9 (diff)
parent8df772b3c665e663f6f9d2a70f9c691590bd3f91 (diff)
Merge branch 'dde' into upstream-merged
Diffstat (limited to 'libdde_linux26/README')
-rw-r--r--libdde_linux26/README46
1 files changed, 46 insertions, 0 deletions
diff --git a/libdde_linux26/README b/libdde_linux26/README
new file mode 100644
index 00000000..ccc58959
--- /dev/null
+++ b/libdde_linux26/README
@@ -0,0 +1,46 @@
+ This is DDELinux 2.6.29
+
+Directory structure
+###################
+
+'contrib/'
+==========
+
+This directory tree holds unmodified Linux sources. The files residing here
+are sourced by Makefiles in 'examples' and 'lib'. All unmodified C headers are
+also kept here.
+
+
+'include/'
+==========
+
+Currently reimplemented and modified C headers as well as the DDELinux 2.6 API
+definition are kept in this directory tree.
+
+Include stuff works as following. First, we install all Linux headers from
+contrib/include to the build directory. Thereafter, we pull in our
+modifications by installing all header files from include/ to the appropriate
+include paths, thereby overwriting the original versions.
+
+
+'lib/src/arch/l4'
+=================
+
+Contains reimplementations of Linux functions that are implemented differently
+in our environment or that are mapped to DDEKit calls. There are no Linux
+functions included here.
+
+
+'lib/src/<linux subdir name>'
+=============================
+
+When we import functions from Linux instead of reimplementing them, we copy
+the whole Linux source file containing this function to this location. We then
+modify the file according to our needs, mostly by wrapping unneeded parts with
+'#ifndef DDE_LINUX .. #endif' blocks.
+
+
+'examples/'
+==========
+
+Here reside test code and example drivers.