summaryrefslogtreecommitdiff
path: root/util/migrated_files.sh
diff options
context:
space:
mode:
Diffstat (limited to 'util/migrated_files.sh')
-rwxr-xr-xutil/migrated_files.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/migrated_files.sh b/util/migrated_files.sh
index 8ed549b6c5..cec86b565b 100755
--- a/util/migrated_files.sh
+++ b/util/migrated_files.sh
@@ -1,6 +1,6 @@
#!/bin/bash
#
-# Copyright 2022 The Chromium OS Authors. All rights reserved.
+# Copyright 2022 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
@@ -12,7 +12,7 @@ exit_code=0
for file in "$@"; do
ec_file="${file##**/platform/ec/}"
case "${ec_file}" in
- baseboard/*|board/*|chip/*|common/fpsensor/*|test/*|util/*|zephyr/*) ;;
+ baseboard/*|board/*|chip/*|*fpsensor*|test/*|util/*|zephyr/*) ;;
**.c)
if ! grep -q -F "\${PLATFORM_EC}/${ec_file}" "${cmakes[@]}" ; then
echo -n "WARNING: ${ec_file} is not used in Zephyr EC. Do not edit this"