diff options
Diffstat (limited to 'scripts/update_payload/common.py')
-rw-r--r-- | scripts/update_payload/common.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/update_payload/common.py b/scripts/update_payload/common.py index 584eb35c..2beabeac 100644 --- a/scripts/update_payload/common.py +++ b/scripts/update_payload/common.py @@ -33,12 +33,16 @@ class OpType(object): REPLACE_BZ = _CLASS.REPLACE_BZ MOVE = _CLASS.MOVE BSDIFF = _CLASS.BSDIFF - ALL = (REPLACE, REPLACE_BZ, MOVE, BSDIFF) + SOURCE_COPY = _CLASS.SOURCE_COPY + SOURCE_BSDIFF = _CLASS.SOURCE_BSDIFF + ALL = (REPLACE, REPLACE_BZ, MOVE, BSDIFF, SOURCE_COPY, SOURCE_BSDIFF) NAMES = { REPLACE: 'REPLACE', REPLACE_BZ: 'REPLACE_BZ', MOVE: 'MOVE', BSDIFF: 'BSDIFF', + SOURCE_COPY: 'SOURCE_COPY', + SOURCE_BSDIFF: 'SOURCE_BSDIFF' } def __init__(self): |