In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/bin/function_button.sh line 8:
	$LOGIT -p err -- $*
                         ^-- SC2048 (warning): Use "$@" (with quotes) to prevent whitespace problems.
                         ^-- SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean: 
	$LOGIT -p err -- "$*"


In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/bin/function_button.sh line 16:
	$GDBUS_CALL.assistant_is_active 2>/dev/null
        ^---------^ SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean: 
	"$GDBUS_CALL".assistant_is_active 2>/dev/null


In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/bin/function_button.sh line 26:
	local focus_active
        ^----------------^ SC3043 (warning): In POSIX sh, 'local' is undefined.


In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/bin/function_button.sh line 29:
		focus_active=$($GDBUS_CALL.assistant_is_active) ||
                               ^---------^ SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean: 
		focus_active=$("$GDBUS_CALL".assistant_is_active) ||


In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/bin/function_button.sh line 36:
				$GDBUS_CALL.assistant_button ||
                                ^---------^ SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean: 
				"$GDBUS_CALL".assistant_button ||


In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/bin/function_button.sh line 60:
			$GDBUS_CALL.assistant_button ||
                        ^---------^ SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean: 
			"$GDBUS_CALL".assistant_button ||

For more information:
  https://www.shellcheck.net/wiki/SC2048 -- Use "$@" (with quotes) to prevent...
  https://www.shellcheck.net/wiki/SC3043 -- In POSIX sh, 'local' is undefined.
  https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing ...