Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(335)

Side by Side Diff: chromeos_version.sh

Issue 2792011: Use new cgpt tool when creating images and the pack/unpack scripts. (Closed) Base URL: ssh://git@chromiumos-git//crosutils.git
Patch Set: Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | emit_gpt_scripts.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/sh 1 #!/bin/sh
2 2
3 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. 3 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be 4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 5 # found in the LICENSE file.
6 6
7 # ChromeOS version information 7 # ChromeOS version information
8 # 8 #
9 # This file is usually sourced by other build scripts, but can be run 9 # This file is usually sourced by other build scripts, but can be run
10 # directly to see what it would do. 10 # directly to see what it would do.
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 export CHROMEOS_VERSION_STRING=\ 80 export CHROMEOS_VERSION_STRING=\
81 "${CHROMEOS_VERSION_MAJOR}.${CHROMEOS_VERSION_MINOR}"\ 81 "${CHROMEOS_VERSION_MAJOR}.${CHROMEOS_VERSION_MINOR}"\
82 ".${CHROMEOS_VERSION_BRANCH}.${CHROMEOS_VERSION_PATCH}" 82 ".${CHROMEOS_VERSION_BRANCH}.${CHROMEOS_VERSION_PATCH}"
83 83
84 # Set CHROME values (Used for releases) to pass to chromeos-chrome-bin ebuild 84 # Set CHROME values (Used for releases) to pass to chromeos-chrome-bin ebuild
85 # URL to chrome archive 85 # URL to chrome archive
86 export CHROME_BASE= 86 export CHROME_BASE=
87 # directory containing chrome-chromeos.zip - an svn rev or a full version 87 # directory containing chrome-chromeos.zip - an svn rev or a full version
88 export CHROME_BUILD= 88 export CHROME_BUILD=
89 89
90 # Print version info. 90 # Print (and remember) version info.
91 echo "ChromeOS version information:" 91 echo "ChromeOS version information:"
92 env | egrep '^CHROMEOS_VERSION|CHROME_' | sed 's/^/ /' 92 logvers="/tmp/version_${CHROMEOS_VERSION_STRING}"
93 env | egrep '^CHROMEOS_VERSION|CHROME_' | tee $logvers | sed 's/^/ /'
OLDNEW
« no previous file with comments | « no previous file | emit_gpt_scripts.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698