diff options
| author | Alex Deymo <deymo@google.com> | 2016-06-27 12:14:03 -0700 |
|---|---|---|
| committer | Alex Deymo <deymo@google.com> | 2016-06-27 12:20:26 -0700 |
| commit | ce47ca46a3dd74985ac96e95da22ef7a3b742d25 (patch) | |
| tree | a8ead3ebdbf56da13feeb984991f51cba1f71577 /scripts/update_payload/__init__.py | |
| parent | 773f4323a4f6357b7c79debf0f87ffa658fabec4 (diff) | |
| parent | c2538fab9a7fc01c0216520874d711c8a9fbd9d3 (diff) | |
Merge dev-utils update_payload_library and the paycheck.
The update_payload library is a python library for parsing and
handling update payload. This library is used by the payload checker
python script also included here.
The code is merged from this repo:
https://chromium.googlesource.com/chromiumos/platform/dev-util/
Bug: 28797993
TEST='import update_payload'
Diffstat (limited to 'scripts/update_payload/__init__.py')
| -rw-r--r-- | scripts/update_payload/__init__.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/scripts/update_payload/__init__.py b/scripts/update_payload/__init__.py new file mode 100644 index 00000000..1906a162 --- /dev/null +++ b/scripts/update_payload/__init__.py @@ -0,0 +1,11 @@ +# Copyright (c) 2013 The Chromium OS Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +"""Library for processing, verifying and applying Chrome OS update payloads.""" + +# Just raise the interface classes to the root namespace. +# pylint: disable=W0401 +from checker import CHECKS_TO_DISABLE +from error import PayloadError +from payload import Payload |
