summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xscripts/image_signing/ensure_amd_psp_flags.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/image_signing/ensure_amd_psp_flags.sh b/scripts/image_signing/ensure_amd_psp_flags.sh
index efccb69a..c3472a3c 100755
--- a/scripts/image_signing/ensure_amd_psp_flags.sh
+++ b/scripts/image_signing/ensure_amd_psp_flags.sh
@@ -28,7 +28,7 @@ BOARD_IGNORE_LIST=(grunt skyrim)
usage() {
echo "$0: Validate AMD PSP soft-fuse flags contained in a ChromeOS image." \
"These flags can have security implications and control debug features."
- echo "Usage $0 <board> <image>"
+ echo "Usage $0 <image> <board>"
}
main() {
@@ -37,8 +37,8 @@ main() {
exit 1
fi
- local board="$1"
- local image="$2"
+ local image="$1"
+ local board="$2"
# Check the ignore list.
if [[ " ${BOARD_IGNORE_LIST[*]} " == *" ${board} "* ]]; then