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

Side by Side Diff: scripts/bitmaps/process_all_targets.sh

Issue 6273012: Make make_bmp_images work specially on ARM (Closed) Base URL: http://git.chromium.org/git/vboot_reference.git@master
Patch Set: use x86/arm as argument Created 9 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « scripts/bitmaps/makelines.sh ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/bash -e 1 #!/bin/bash -e
2 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. 2 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 # 5 #
6 # This script searches the directory tree passed in as the parameter for 6 # This script searches the directory tree passed in as the parameter for
7 # bmp_*.fv files, figures out the FWID strings from files' names, verifies the 7 # bmp_*.fv files, figures out the FWID strings from files' names, verifies the
8 # FWIDs' integrity (by recalculating the CRC included in the FWID string) and 8 # FWIDs' integrity (by recalculating the CRC included in the FWID string) and
9 # then rebuilds the bitmaps with the appropriate text and target specific 9 # then rebuilds the bitmaps with the appropriate text and target specific
10 # geometry. 10 # geometry.
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 case "${elements}" in 56 case "${elements}" in
57 (*ACER*) geometry='1366x768' 57 (*ACER*) geometry='1366x768'
58 ;; 58 ;;
59 (*MARIO*) geometry='1280x800' 59 (*MARIO*) geometry='1280x800'
60 ;; 60 ;;
61 (*) echo "skipping ${filename}, unknown target geometry" 61 (*) echo "skipping ${filename}, unknown target geometry"
62 echo 62 echo
63 continue 63 continue
64 ;; 64 ;;
65 esac 65 esac
66 ./make_bmp_images.sh "${elements} ${signature}" "${geometry}" 66 ./make_bmp_images.sh "${elements} ${signature}" "${geometry}" "x86"
67 echo 67 echo
68 done 68 done
OLDNEW
« no previous file with comments | « scripts/bitmaps/makelines.sh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698