In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/bin/acap-startstop line 3:
. /usr/html/axis-cgi/lib/adp.sh
  ^---------------------------^ SC1091 (info): Not following: /usr/html/axis-cgi/lib/adp.sh was not specified as input (see shellcheck -x).


In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/bin/acap-startstop line 5:
[ $# -ge 2 ] && [ $1 ] && [ $2 ] || {
                  ^-- SC2086 (info): Double quote to prevent globbing and word splitting.
                       ^-- SC2015 (info): Note that A && B || C is not if-then-else. C may run when A is true.
                            ^-- SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean: 
[ $# -ge 2 ] && [ "$1" ] && [ "$2" ] || {


In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/bin/acap-startstop line 11:
__admin_adp_package $1 $2 ${3:-} ${4:-}
                    ^-- SC2086 (info): Double quote to prevent globbing and word splitting.
                       ^-- SC2086 (info): Double quote to prevent globbing and word splitting.
                          ^----^ SC2086 (info): Double quote to prevent globbing and word splitting.
                                 ^----^ SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean: 
__admin_adp_package "$1" "$2" "${3:-}" "${4:-}"

For more information:
  https://www.shellcheck.net/wiki/SC1091 -- Not following: /usr/html/axis-cgi...
  https://www.shellcheck.net/wiki/SC2015 -- Note that A && B || C is not if-t...
  https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing ...