1 #!/bin/bash 2 3 # Copyright (c) 2012 The Chromium OS Authors. All rights reserved. 4 # Use of this source code is governed by a BSD-style license that can be 5 # found in the LICENSE file. 6 7 expected_auserver="https://tools.google.com/service/update2" 8 expected_release_name="Chrome OS" 9 10 # List boards here 11 expected_boards=( 12 x86-mario 13 x86-alex-signed-mp-v3keys 14 ) 15 16 # List track names here 17 expected_release_tracks=( 18 canary-channel 19 dogfood-channel 20 beta-channel 21 dev-channel 22 ) 23 24 # Associate board names with APPID's by creating a series 25 # of variables here. Variables should be named based on 26 # expected boards (above), with hyphens transposed to 27 # underscores (to be legal in variable names). 28 expected_appid_x86_mario="{87efface-864d-49a5-9bb3-4b050a7c227a}" 29 expected_appid_x86_alex="{C776D42E-287A-435E-8BA7-E770BD30B46D}" 30 expected_appid_canary="{90F229CE-83E2-4FAF-8479-E368A34938B1}" 31 expected_appid_dogfood="{4897842343-83E2-4FAF-8479-E368A34938B1}" 32