summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaveh Jalali <caveh@chromium.org>2023-05-01 21:07:54 -0700
committerYu-Ping Wu <yupingso@google.com>2023-05-16 16:34:17 +0000
commitfe95f83fd8d0abd7c9a5c70e84d0862a26f7194c (patch)
treed85a045110e5fb04a4dcda35a9c5846a1b339b47
parentb3485f383345b9eac1c0bab6f3679ef0cfc1c9e1 (diff)
downloadcoreboot-fe95f83fd8d0abd7c9a5c70e84d0862a26f7194c.tar.gz
util/chromeos: Add EC header update utility
This adds a new utility for copying ec_commands.h and ec_cmd_api.h from the chrome EC repo with the appropriate copyright header adjustment. It is invoked as: util/chromeos/update_ec_headers.sh [EC-repo] where EC-repo is the top of the EC repo from which header files are to be obtained. The corresponding files in src/ec/google/chromeec are updated but not committed. Also, a commit message is suggested with the original git versions for reference. BUG=b:258126464 Change-Id: Ib43c75d807dd925b2c4bff425c07a36b4b4582c4 Signed-off-by: Caveh Jalali <caveh@chromium.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/74879 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Boris Mittelberg <bmbm@google.com> Reviewed-by: Yu-Ping Wu <yupingso@google.com>
-rwxr-xr-xutil/chromeos/update_ec_headers.sh118
1 files changed, 118 insertions, 0 deletions
diff --git a/util/chromeos/update_ec_headers.sh b/util/chromeos/update_ec_headers.sh
new file mode 100755
index 0000000000..c3ee13e5f7
--- /dev/null
+++ b/util/chromeos/update_ec_headers.sh
@@ -0,0 +1,118 @@
+#!/usr/bin/env bash
+#
+# SPDX-License-Identifier: GPL-2.0-only
+
+#
+# Imports ec_commands.h and ec_cmd_api.h from the cros EC repo
+# and updates the copyright header for coreboot.
+#
+
+set -u
+
+scratch_file=''
+coreboot_top=''
+pname=''
+
+cleanup()
+{
+ if [[ -n "${scratch_file}" ]]; then
+ rm -f -- "${scratch_file}"
+ scratch_file=''
+ fi
+}
+
+trap cleanup EXIT
+
+usage()
+{
+ cat <<- __EOF
+ Usage: ${pname}: [top of cros EC repo]
+
+ Imports ec_commands.h and ec_cmd_api.h from the cros EC repo
+ and updates the copyright header for coreboot.
+ __EOF
+}
+
+#
+# Remove the original ChromiumOS copyright so we can insert the SPDX
+# license identifier. Preserve the original number of lines in the file
+# so embedded #line directives are correct.
+#
+
+update_copyright()
+{
+ local spdx='/* SPDX-License-Identifier: BSD-3-Clause */'
+ local f=$1
+
+ # replace existing copyright with empty lines
+ sed -i -e '/Copyright.*Chromium/,/^$/{s/^.*$//}' "${f}"
+ # now add the SPDX header
+ sed -i -e "1s@^\$@${spdx}@" "${f}"
+}
+
+get_file()
+{
+ local ec_path="$1"
+ local ec_file="$2"
+ local dst_path="$3"
+ local log
+
+ if [[ ! -f "${ec_path}/${ec_file}" ]]; then
+ echo "${ec_path}/${ec_file} does not exist" 2>&1
+ return 1
+ fi
+
+ scratch_file=$(mktemp)
+
+ cp "${ec_path}/${ec_file}" "${scratch_file}"
+
+ update_copyright "${scratch_file}"
+ cp "${scratch_file}" "${dst_path}"
+
+ rm -f "${scratch_file}"
+ scratch_file=''
+
+ log=$(git -C "${ec_path}" log --oneline -1 "${ec_file}")
+ echo "The original ${ec_file} version in the EC repo is:"
+ echo " ${log}"
+}
+
+main()
+{
+ local dst_path
+ local ec_path
+
+ pname=$(basename "$0")
+
+ if [[ $# != 1 ]]; then
+ usage
+ exit 1
+ fi
+
+ ec_path="$1"
+ if [[ ! -d "${ec_path}" ]]; then
+ echo "${pname}: could not find ${ec_path}" 1>&2
+ exit 1
+ fi
+
+ coreboot_top=$(git rev-parse --show-toplevel)
+ if [[ ! -d "${coreboot_top}" ]]; then
+ echo "${pname}: could not determine coreboot top" 1>&2
+ exit 1
+ fi
+
+ dst_path="${coreboot_top}/src/ec/google/chromeec"
+
+ cat <<- __EOF
+ Suggested commit message:
+
+ Generated using ${pname} [EC-DIR].
+
+ __EOF
+
+ get_file "${ec_path}" include/ec_commands.h "${dst_path}/ec_commands.h"
+ get_file "${ec_path}" include/ec_cmd_api.h "${dst_path}/ec_cmd_api.h"
+ echo
+}
+
+main "$@"