summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuergen Beisert <jbe@isonoe.(none)>2007-10-19 15:35:37 +0200
committerJuergen Beisert <jbe@isonoe.(none)>2007-10-19 15:35:37 +0200
commitb90fc81605655e65cabe2dff17c3d49d972e4927 (patch)
tree2912fabd58e8a6c8fecbf0d565b255f90d51ff9b
parent53dd8423a51db7e891241cd339e63dc44194ace0 (diff)
downloadbarebox-b90fc81605655e65cabe2dff17c3d49d972e4927.tar.gz
barebox-b90fc81605655e65cabe2dff17c3d49d972e4927.tar.xz
doc added (what else)
-rw-r--r--Documentation/developers_manual.dox13
-rw-r--r--include/driver.h7
2 files changed, 16 insertions, 4 deletions
diff --git a/Documentation/developers_manual.dox b/Documentation/developers_manual.dox
index e08c1f905a..0eca7e1a2d 100644
--- a/Documentation/developers_manual.dox
+++ b/Documentation/developers_manual.dox
@@ -1,11 +1,20 @@
/** @page developers_manual Developer's Manual
-FIXME: Hints and tips for simply adapting UBootv2
+This part of the documentation is intended for developers.
+
+Some background knowledge for some frameworks in UBootv2
+
+ - @subpage driver_model
+
+Hints and tips for simply adapting UBootv2
- @subpage dev_board
- @subpage dev_cpu
- @subpage dev_architecture
- @subpage dev_params
-@subpage how_mount_works
+Various themes:
+
+ - @subpage how_mount_works
+
*/ \ No newline at end of file
diff --git a/include/driver.h b/include/driver.h
index f92c1d26b3..cade9fdfb6 100644
--- a/include/driver.h
+++ b/include/driver.h
@@ -42,11 +42,14 @@
* @file
* @brief Main description of the device/driver model
*/
-/** @defgroup driver_model Main description of the device/driver model
+
+/** @page driver_model Main description of the device/driver model
*
* We follow a rather simplistic driver model here. There is a
* @code struct device_d @endcode
- * which describes a particular device present in the system. A
+ * which describes a particular device present in the system.
+ *
+ * On the other side a
* @code struct driver_d @endcode
* represents a driver present in the system.
*