In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/bin/parhand-systemctl line 9:
. /lib/rcscripts/sh/error.sh
  ^------------------------^ SC1091 (info): Not following: /lib/rcscripts/sh/error.sh was not specified as input (see shellcheck -x).


In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/bin/parhand-systemctl line 11:
[ $# -ge 2 ] && [ "$1" ] && [ "$2" ] ||
                         ^-- SC2015 (info): Note that A && B || C is not if-then-else. C may run when A is true.


In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/bin/parhand-systemctl line 25:
				IFS==
                                    ^-- SC1097 (error): Unexpected ==. For assignment, use =. For comparison, use [/[[. Or quote for literal string.


In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/bin/parhand-systemctl line 26:
				while read var val; do
                                      ^--^ SC2162 (info): read without -r will mangle backslashes.


In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/bin/parhand-systemctl line 42:
				eval param_val=\$$3
                                                 ^-- SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean: 
				eval param_val=\$"$3"


In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/bin/parhand-systemctl line 48:
					$run start $2 || error "Failed to start $2"
                                                   ^-- SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean: 
					$run start "$2" || error "Failed to start $2"


In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/bin/parhand-systemctl line 52:
					$run stop $2 || error "Failed to stop $2"
                                                  ^-- SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean: 
					$run stop "$2" || error "Failed to stop $2"


In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/bin/parhand-systemctl line 61:
			$run $1 $2 || error "Failed to $1 $2"
                             ^-- SC2086 (info): Double quote to prevent globbing and word splitting.
                                ^-- SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean: 
			$run "$1" "$2" || error "Failed to $1 $2"


In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/bin/parhand-systemctl line 64:
) 9>$lf
    ^-^ SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean: 
) 9>"$lf"

For more information:
  https://www.shellcheck.net/wiki/SC1097 -- Unexpected ==. For assignment, us...
  https://www.shellcheck.net/wiki/SC1091 -- Not following: /lib/rcscripts/sh/...
  https://www.shellcheck.net/wiki/SC2015 -- Note that A && B || C is not if-t...