We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ec94b2 commit caa8698Copy full SHA for caa8698
src/utils/manifest.js
@@ -47,7 +47,9 @@ export class Image {
47
this.name = json.name
48
this.sparse = json.sparse
49
50
- if (this.name === 'system') {
+ // before AGNOS 11 - flash alt skip-chunks image
51
+ // after AGNOS 11 - flash main non-sparse image
52
+ if (this.name === 'system' && this.sparse && json.alt) {
53
this.checksum = json.alt.hash
54
this.fileName = `${this.name}-skip-chunks-${json.hash_raw}.img`
55
this.archiveUrl = json.alt.url
0 commit comments