Skip to content

Commit

Permalink
#617 allow specify partition table without merge, to create a larger …
Browse files Browse the repository at this point in the history
…than default partition ota image
  • Loading branch information
Empire committed May 2, 2024
1 parent 15991b5 commit e710805
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed
- Fixed help text for size parameter of read-flash subcommand
- Allow to use --partition-table without --merged, to allow larger than default partition-table ota binaries

### Changed

Expand Down
2 changes: 1 addition & 1 deletion espflash/src/cli/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ pub struct SaveImageArgs {
#[arg(long)]
pub merge: bool,
/// Custom partition table for merging
#[arg(long, short = 'T', requires = "merge", value_name = "FILE")]
#[arg(long, short = 'T', value_name = "FILE")]
pub partition_table: Option<PathBuf>,
/// Partition table offset
#[arg(long, value_name = "OFFSET")]
Expand Down

0 comments on commit e710805

Please sign in to comment.