File tree 2 files changed +17
-7
lines changed
2 files changed +17
-7
lines changed Original file line number Diff line number Diff line change 1
1
const config = {
2
2
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' ,
5
6
} ,
6
7
loader : {
7
8
url : 'https://raw.githubusercontent.com/commaai/flash/master/src/QDL/programmer.bin' ,
Original file line number Diff line number Diff line change @@ -43,20 +43,29 @@ export class Image {
43
43
*/
44
44
archiveUrl
45
45
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
+
46
54
constructor ( json ) {
47
55
this . name = json . name
48
56
this . sparse = json . sparse
49
57
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
+ }
53
64
this . checksum = json . alt . hash
54
- this . fileName = `${ this . name } -skip-chunks-${ json . hash_raw } .img`
55
65
this . archiveUrl = json . alt . url
56
66
this . size = json . alt . size
57
67
} else {
58
68
this . checksum = json . hash
59
- this . fileName = `${ this . name } -${ json . hash_raw } .img`
60
69
this . archiveUrl = json . url
61
70
this . size = json . size
62
71
}
You can’t perform that action at this time.
0 commit comments