File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,9 @@ config NXBOOT_HEADER_SIZE
40
40
hex "Application firmware image header size"
41
41
default 0x200
42
42
---help---
43
+ The nxboot bootloader itself requires only a few bytes of header
44
+ data. Increase this value, if you need to store additional
45
+ application-specific meta data.
43
46
Note that this size should be aligned with the program memory write
44
47
page size!
45
48
@@ -59,8 +62,9 @@ config NXBOOT_BOOTLOADER
59
62
select BOARDCTL_BOOT_IMAGE
60
63
---help---
61
64
This option builds and links a bootloader application. This application
62
- should be an entry function for NuttX. It checks for possible update/
63
- revert operation, performs it and boot the correct image.
65
+ ("nxboot_loader_main") should be the entry function for NuttX.
66
+ It checks for a possible update/revert operation, performs it and boots
67
+ the correct image.
64
68
65
69
if NXBOOT_BOOTLOADER
66
70
Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ def parse_args() -> argparse.Namespace:
116
116
parser .add_argument (
117
117
"-v" ,
118
118
action = "store_true" ,
119
- help = "Verbose output. This prints information abourt the created image." ,
119
+ help = "Verbose output. This prints information about the created image." ,
120
120
)
121
121
parser .add_argument (
122
122
"PATH" ,
You can’t perform that action at this time.
0 commit comments