summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBill Richardson <wfrichar@chromium.org>2010-12-13 16:20:13 -0800
committerBill Richardson <wfrichar@chromium.org>2010-12-13 16:20:13 -0800
commit841c4115ee3b66b62b6bb41caf87c598b7bab7c1 (patch)
tree0b31458d4bbcd6ed9add4fcf0da16aeb9525dd04
parent51b9b8362259f44667117473c2d78f8c9e202286 (diff)
downloadvboot-841c4115ee3b66b62b6bb41caf87c598b7bab7c1.tar.gz
Print "model" instead of "HWID" when telling users about available images.
BUG=chromium-os:10207 TEST=manual Run the recovery script. It should say something like this (note "model", not "HWID"): There is 1 recovery image to choose from: 0 - <quit> 1 - Chrome Notebook channel: beta-channel model: IEC MARIO FISH 2330 model: IEC MARIO PONY 6101 Please select a recovery image to download: Change-Id: I40cc73974b9e673bae5f69739e1642a6a95d4638 Review URL: http://codereview.chromium.org/5716006
-rwxr-xr-xuser_tools/linux/recovery.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/user_tools/linux/recovery.sh b/user_tools/linux/recovery.sh
index 9273076c..9d7a13df 100755
--- a/user_tools/linux/recovery.sh
+++ b/user_tools/linux/recovery.sh
@@ -423,7 +423,7 @@ choose_image() {
elif echo "$line" | grep -q '^channel='; then
echo "$line" | sed 's/channel=/ channel: /'
elif echo "$line" | grep -q '^hwid='; then
- echo "$line" | sed 's/hwid=/ HWID: /'
+ echo "$line" | sed 's/hwid=/ model: /'
fi
done < "$config"
echo