Skip to content

Commit 986ece1

Browse files
committed
check archive is compressed
1 parent 94ce2d8 commit 986ece1

File tree

2 files changed

+17
-7
lines changed

2 files changed

+17
-7
lines changed

src/config.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
const config = {
22
manifests: {
3-
release: 'https://raw.githubusercontent.com/commaai/openpilot/release3/system/hardware/tici/agnos.json',
4-
master: 'https://raw.githubusercontent.com/commaai/openpilot/master/system/hardware/tici/agnos.json',
3+
// release: 'https://raw.githubusercontent.com/commaai/openpilot/release3/system/hardware/tici/agnos.json',
4+
// master: 'https://raw.githubusercontent.com/commaai/openpilot/master/system/hardware/tici/agnos.json',
5+
staging: 'https://raw.githubusercontent.com/commaai/openpilot/agnos11.7/system/hardware/tici/agnos.json',
56
},
67
loader: {
78
url: 'https://raw.githubusercontent.com/commaai/flash/master/src/QDL/programmer.bin',

src/utils/manifest.js

+14-5
Original file line numberDiff line numberDiff line change
@@ -43,20 +43,29 @@ export class Image {
4343
*/
4444
archiveUrl
4545

46+
/**
47+
* Whether the image is compressed and should be unpacked
48+
* @type {boolean}
49+
*/
50+
get compressed() {
51+
return this.archiveFileName.endsWith('.xz')
52+
}
53+
4654
constructor(json) {
4755
this.name = json.name
4856
this.sparse = json.sparse
4957

50-
// 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) {
58+
this.fileName = `${this.name}-${json.hash_raw}.img`
59+
if (this.name === 'system' && json.alt) {
60+
if (this.sparse) {
61+
// before AGNOS 11 - skip-chunks image
62+
this.fileName = `${this.name}-skip-chunks-${json.hash_raw}.img`
63+
}
5364
this.checksum = json.alt.hash
54-
this.fileName = `${this.name}-skip-chunks-${json.hash_raw}.img`
5565
this.archiveUrl = json.alt.url
5666
this.size = json.alt.size
5767
} else {
5868
this.checksum = json.hash
59-
this.fileName = `${this.name}-${json.hash_raw}.img`
6069
this.archiveUrl = json.url
6170
this.size = json.size
6271
}

0 commit comments

Comments
 (0)