doc: Make bootloaders visible in modules
This commit is contained in:
parent
856f246131
commit
204a608c24
5
bootloaders/doc.txt
Normal file
5
bootloaders/doc.txt
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
/**
|
||||||
|
* @defgroup bootloaders Bootloaders
|
||||||
|
* @brief Applications that facilitate the startup process in presence of upgradable firmware
|
||||||
|
*
|
||||||
|
*/
|
||||||
@ -1,3 +1,7 @@
|
|||||||
|
/**
|
||||||
|
@defgroup bootloader_riotboot riotboot
|
||||||
|
@ingroup bootloaders
|
||||||
|
|
||||||
# Overview
|
# Overview
|
||||||
This folder contains a simple bootloader called "riotboot".
|
This folder contains a simple bootloader called "riotboot".
|
||||||
A header with metadata of length `RIOTBOOT_HDR_LEN` precedes
|
A header with metadata of length `RIOTBOOT_HDR_LEN` precedes
|
||||||
@ -48,7 +52,7 @@ no image will be booted and the bootloader will enter `while(1);` endless loop.
|
|||||||
# Requirements
|
# Requirements
|
||||||
Try to compile and run tests/riotboot:
|
Try to compile and run tests/riotboot:
|
||||||
|
|
||||||
$ BOARD=<board> make -C tests/riotboot flash test
|
$ BOARD=<board> make -C tests/riotboot flash test
|
||||||
|
|
||||||
If the test succeeds, your board is supported. Else you can try to port
|
If the test succeeds, your board is supported. Else you can try to port
|
||||||
riotboot to your board (see the below porting guide).
|
riotboot to your board (see the below porting guide).
|
||||||
@ -151,3 +155,5 @@ offset and a defined firmware size. To get an idea look at
|
|||||||
Additional remarks:
|
Additional remarks:
|
||||||
|
|
||||||
- If your are in Big-Endian, you may need to further adapt some part of the code.
|
- If your are in Big-Endian, you may need to further adapt some part of the code.
|
||||||
|
|
||||||
|
*/
|
||||||
@ -8,7 +8,6 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @defgroup bootloaders RIOT compatible bootloaders
|
|
||||||
* @ingroup bootloaders
|
* @ingroup bootloaders
|
||||||
* @{
|
* @{
|
||||||
*
|
*
|
||||||
|
|||||||
@ -757,6 +757,7 @@ INPUT = ../../doc.txt \
|
|||||||
../../core \
|
../../core \
|
||||||
../../cpu \
|
../../cpu \
|
||||||
../../boards \
|
../../boards \
|
||||||
|
../../bootloaders \
|
||||||
../../drivers \
|
../../drivers \
|
||||||
../../pkg \
|
../../pkg \
|
||||||
../../sys \
|
../../sys \
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user