9
0
Fork 0

doc added (what else)

This commit is contained in:
Juergen Beisert 2007-10-19 15:35:37 +02:00
parent 53dd8423a5
commit b90fc81605
2 changed files with 16 additions and 4 deletions

View File

@ -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
*/

View File

@ -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.
*