mirror of
https://github.com/chenxiaolong/avbroot.git
synced 2026-07-03 14:05:11 +02:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 02b172b1c9 | |||
| 8cbcb44e23 | |||
| 144e635257 |
@@ -7,6 +7,10 @@
|
||||
to update the actual links at the bottom of the file.
|
||||
-->
|
||||
|
||||
### Version 3.30.1
|
||||
|
||||
* Fix `avbroot payload pack` and `avbroot zip pack --payload` for non-VABC devices ([Issue #607], [PR #608])
|
||||
|
||||
### Version 3.30.0
|
||||
|
||||
* Add `avbroot ota list` subcommand to list all partitions in an OTA ([Issue #603], [PR #606])
|
||||
@@ -501,6 +505,7 @@ Behind-the-scenes changes:
|
||||
[Issue #578]: https://github.com/chenxiaolong/avbroot/issues/578
|
||||
[Issue #593]: https://github.com/chenxiaolong/avbroot/issues/593
|
||||
[Issue #603]: https://github.com/chenxiaolong/avbroot/issues/603
|
||||
[Issue #607]: https://github.com/chenxiaolong/avbroot/issues/607
|
||||
[PR #130]: https://github.com/chenxiaolong/avbroot/pull/130
|
||||
[PR #132]: https://github.com/chenxiaolong/avbroot/pull/132
|
||||
[PR #133]: https://github.com/chenxiaolong/avbroot/pull/133
|
||||
@@ -734,3 +739,4 @@ Behind-the-scenes changes:
|
||||
[PR #594]: https://github.com/chenxiaolong/avbroot/pull/594
|
||||
[PR #605]: https://github.com/chenxiaolong/avbroot/pull/605
|
||||
[PR #606]: https://github.com/chenxiaolong/avbroot/pull/606
|
||||
[PR #608]: https://github.com/chenxiaolong/avbroot/pull/608
|
||||
|
||||
Generated
+4
-4
@@ -104,7 +104,7 @@ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
||||
|
||||
[[package]]
|
||||
name = "avbroot"
|
||||
version = "3.30.0"
|
||||
version = "3.30.1"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"assert_matches",
|
||||
@@ -596,7 +596,7 @@ checksum = "ecb08c4819242b1ec89b3d0c6affa229005bef46ae4f7eed8b80768187c10087"
|
||||
|
||||
[[package]]
|
||||
name = "e2e"
|
||||
version = "3.30.0"
|
||||
version = "3.30.1"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"avbroot",
|
||||
@@ -692,7 +692,7 @@ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
||||
|
||||
[[package]]
|
||||
name = "fuzz"
|
||||
version = "3.30.0"
|
||||
version = "3.30.1"
|
||||
dependencies = [
|
||||
"avbroot",
|
||||
"honggfuzz",
|
||||
@@ -2331,7 +2331,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "xtask"
|
||||
version = "3.30.0"
|
||||
version = "3.30.1"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"clap",
|
||||
|
||||
+1
-1
@@ -4,7 +4,7 @@ members = ["avbroot", "e2e", "fuzz", "xtask"]
|
||||
resolver = "2"
|
||||
|
||||
[workspace.package]
|
||||
version = "3.30.0"
|
||||
version = "3.30.1"
|
||||
license = "GPL-3.0-only"
|
||||
edition = "2024"
|
||||
repository = "https://github.com/chenxiaolong/avbroot"
|
||||
|
||||
@@ -219,8 +219,11 @@ pub fn pack_payload(
|
||||
|
||||
for (name, input_file) in &input_files {
|
||||
let Some(dpm) = &header.manifest.dynamic_partition_metadata else {
|
||||
continue;
|
||||
break;
|
||||
};
|
||||
if !dpm.vabc_enabled() {
|
||||
break;
|
||||
}
|
||||
|
||||
if !dpm.groups.iter().any(|g| g.partition_names.contains(name)) {
|
||||
continue;
|
||||
|
||||
Reference in New Issue
Block a user