Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

- Renamed `--check-app-descriptor` to `--ignore-app-descriptor` (#833)

### Fixed

### Removed
Expand Down
4 changes: 2 additions & 2 deletions espflash/src/cli/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -257,8 +257,8 @@ pub struct ImageArgs {
/// MMU page size.
#[arg(long, value_name = "MMU_PAGE_SIZE", value_parser = parse_u32)]
pub mmu_page_size: Option<u32>,
/// Flag to check the app descriptor in bootloader
#[arg(long, default_value = "true", value_parser = clap::value_parser!(bool))]
/// Skip checking whether the app descriptor is present in the image.
#[arg(long = "ignore_app_descriptor", default_value_t = true, action = clap::ArgAction::SetFalse)]
pub check_app_descriptor: bool,
}

Expand Down
Loading