#!/bin/bash # Copyright 2011 The ChromiumOS Authors # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. # Script to increment kernel subkey and datakey for firmware updates. # Used when revving versions for a firmware update. # Load common constants and variables. . "${0%/*}"/common.sh # Abort on errors. set -e if [ $# -ne 1 ]; then cat < Increments the kernel subkey, data key and firmware version in the specified keyset. EOF exit 1 fi KEY_DIR=$1 main() { load_current_versions "${KEY_DIR}" new_kernkey_ver=$(increment_version "${KEY_DIR}" "kernel_key_version") new_firm_ver=$(increment_version "${KEY_DIR}" "firmware_version") cd "${KEY_DIR}" backup_existing_kernel_subkeys ${CURR_FIRM_VER} ${CURR_KERNKEY_VER} backup_existing_kernel_data_keys ${CURR_FIRM_VER} ${CURR_KERNKEY_VER} cat <