blob: 7dbca58783058cc773795999daf5a70928abeb14 [file] [log] [blame]
#!/bin/bash
# Copyright 2019 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
FW_FILE="$1"
if [[ ! -f "${FW_FILE}" ]]; then
echo "You must specify a firmware file to flash"
exit 1
fi
flashrom --fast-verify -V -p ec:type=fp -i EC_RW -w "${FW_FILE}"