summaryrefslogtreecommitdiff
path: root/scripts/update_payload/__init__.py
diff options
context:
space:
mode:
authorAlex Deymo <deymo@google.com>2016-06-27 12:14:03 -0700
committerAlex Deymo <deymo@google.com>2016-06-27 12:20:26 -0700
commitce47ca46a3dd74985ac96e95da22ef7a3b742d25 (patch)
treea8ead3ebdbf56da13feeb984991f51cba1f71577 /scripts/update_payload/__init__.py
parent773f4323a4f6357b7c79debf0f87ffa658fabec4 (diff)
parentc2538fab9a7fc01c0216520874d711c8a9fbd9d3 (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__.py11
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