| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |