Add incremental support and update docs
This commit is contained in:
parent
21425b4b3a
commit
5af124c277
11
README.md
11
README.md
|
@ -19,13 +19,18 @@
|
||||||
## Usage
|
## Usage
|
||||||
The script expects OTA files to be named as follows:
|
The script expects OTA files to be named as follows:
|
||||||
|
|
||||||
_project_\__device_-ota-_version_-_buildtype_-_incremental_.zip
|
Full OTA files:
|
||||||
|
* _project_\__device_-ota-_version_-_buildtype_-_incremental_.zip
|
||||||
|
|
||||||
|
Incremental OTA files:
|
||||||
|
* _project_\__device_-ota-_version_-_buildtype_-_base_\__incremental_.zip
|
||||||
|
|
||||||
Where:
|
Where:
|
||||||
* _project_ is the project/ROM name, eg. "lineage".
|
* _project_ is the project/ROM name, eg. "lineage".
|
||||||
* _device_ is the device name, eg. "mako".
|
* _device_ is the device name, eg. "mako".
|
||||||
* _version_ is the project/ROM version, eg. "16.0".
|
* _version_ is the project/ROM version, eg. "16.0".
|
||||||
* _buildtype_ is the buildtype, eg. "unofficial".
|
* _buildtype_ is the buildtype, eg. "unofficial".
|
||||||
|
* _base_ is the base incremental version (the starting build).
|
||||||
* _incremental_ is the incremental version, eg. "eng.user.20200807.162000".
|
* _incremental_ is the incremental version, eg. "eng.user.20200807.162000".
|
||||||
|
|
||||||
The default OTA and target-files file names include all of these fields
|
The default OTA and target-files file names include all of these fields
|
||||||
|
@ -33,7 +38,9 @@ except _incremental_. This is the value of `ro.build.version.incremental`
|
||||||
in the system build properties. It is different from `ro.build.date.utc`.
|
in the system build properties. It is different from `ro.build.date.utc`.
|
||||||
They are __not__ interchangeable.
|
They are __not__ interchangeable.
|
||||||
|
|
||||||
Example: lineage_mako-ota-16.0-unofficial-eng.user.20200807.162000.zip
|
Examples:
|
||||||
|
* lineage_mako-ota-16.0-unofficial-eng.user.20200807.162000.zip
|
||||||
|
* lineage_mako-ota-16.0-unofficial-eng.user.20200806.162000_eng.user.20200807.162000.zip
|
||||||
|
|
||||||
The OTA directory may contain subdirectories of arbitrary depth.
|
The OTA directory may contain subdirectories of arbitrary depth.
|
||||||
|
|
||||||
|
|
|
@ -80,12 +80,19 @@ def filename_properties(pathname):
|
||||||
if fields[1] != 'ota':
|
if fields[1] != 'ota':
|
||||||
raise ValueError("Not an OTA file")
|
raise ValueError("Not an OTA file")
|
||||||
(project, device) = fields[0].split('_', 1)
|
(project, device) = fields[0].split('_', 1)
|
||||||
|
incr_fields = fields[4].split('_')
|
||||||
|
if len(incr_fields) > 2:
|
||||||
|
raise ValueError("Incorrect incremental value")
|
||||||
props = dict()
|
props = dict()
|
||||||
props['project'] = project
|
props['project'] = project
|
||||||
props['device'] = device
|
props['device'] = device
|
||||||
props['version'] = fields[2]
|
props['version'] = fields[2]
|
||||||
props['buildtype'] = fields[3]
|
props['buildtype'] = fields[3]
|
||||||
props['incremental'] = fields[4]
|
if len(incr_fields) == 1:
|
||||||
|
props['incremental'] = incr_fields[0]
|
||||||
|
else:
|
||||||
|
props['incrbase'] = incr_fields[0]
|
||||||
|
props['incremental'] = incr_fields[1]
|
||||||
|
|
||||||
return props
|
return props
|
||||||
|
|
||||||
|
@ -172,17 +179,23 @@ def find_roms(device=None, buildtype=None, incremental=None):
|
||||||
if buildtype and props['buildtype'] != buildtype:
|
if buildtype and props['buildtype'] != buildtype:
|
||||||
continue
|
continue
|
||||||
if incremental:
|
if incremental:
|
||||||
try:
|
if 'incrbase' in props:
|
||||||
req_incr_stamp = incremental_stamp(incremental)
|
# Incremental
|
||||||
except ValueError:
|
if incremental != props['incrbase']:
|
||||||
continue
|
continue
|
||||||
try:
|
else:
|
||||||
ota_incr_stamp = incremental_stamp(props['incremental'])
|
# Full
|
||||||
except ValueError:
|
try:
|
||||||
dbg("Failed to parse cache incremental field")
|
req_incr_stamp = incremental_stamp(incremental)
|
||||||
continue
|
except ValueError:
|
||||||
if ota_incr_timestamp <= req_incr_timestamp:
|
continue
|
||||||
continue
|
try:
|
||||||
|
ota_incr_stamp = incremental_stamp(props['incremental'])
|
||||||
|
except ValueError:
|
||||||
|
dbg("Failed to parse cache incremental field")
|
||||||
|
continue
|
||||||
|
if ota_incr_stamp <= req_incr_stamp:
|
||||||
|
continue
|
||||||
|
|
||||||
roms.append(v)
|
roms.append(v)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue