xbuddy: Introduce the 'signed' image type
This change makes it possible to flash signed images from cros flash
using the `signed` alias.
BUG=chromium:852017
TEST=cros flash usb:// xbuddy://remote/eve-arcnext/latest-canary/signed
TEST=./xbuddy_unittest.py
Change-Id: I1c4c76ca0dd29845ef8639744745904e209a34eb
Reviewed-on: https://chromium-review.googlesource.com/1097609
Commit-Ready: Luis Hector Chavez <lhchavez@chromium.org>
Tested-by: Luis Hector Chavez <lhchavez@chromium.org>
Reviewed-by: Luis Hector Chavez <lhchavez@chromium.org>
Reviewed-by: Don Garrett <dgarrett@chromium.org>
diff --git a/artifact_info.py b/artifact_info.py
index 19081ed..2eb9070 100644
--- a/artifact_info.py
+++ b/artifact_info.py
@@ -1,3 +1,4 @@
+# -*- coding: utf-8 -*-
# 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.
@@ -29,6 +30,9 @@
# The recovery image - the image used to recover a chromiumos device.
RECOVERY_IMAGE = 'recovery_image'
+# The image that has been signed and can be pushed to regular Chrome OS users.
+SIGNED_IMAGE = 'signed_image'
+
# The test image - the base image with both develolper and test enhancements.
TEST_IMAGE = 'test_image'