File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
11
12
12
### Changed
13
13
14
+ - Renamed ` --check-app-descriptor ` to ` --ignore-app-descriptor ` (#833 )
15
+
14
16
### Fixed
15
17
16
18
### Removed
Original file line number Diff line number Diff line change @@ -257,8 +257,8 @@ pub struct ImageArgs {
257
257
/// MMU page size.
258
258
#[ arg( long, value_name = "MMU_PAGE_SIZE" , value_parser = parse_u32) ]
259
259
pub mmu_page_size : Option < u32 > ,
260
- /// Flag to check the app descriptor in bootloader
261
- #[ arg( long, default_value = " true" , value_parser = clap:: value_parser! ( bool ) ) ]
260
+ /// Skip checking whether the app descriptor is present in the image.
261
+ #[ arg( long = "ignore_app_descriptor" , default_value_t = true , action = clap:: ArgAction :: SetFalse ) ]
262
262
pub check_app_descriptor : bool ,
263
263
}
264
264
You can’t perform that action at this time.
0 commit comments