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


In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/html/axis-cgi/axisns.cgi line 15:
	if [ $CGI_COMPL = no ]; then
             ^--------^ SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean: 
	if [ "$CGI_COMPL" = no ]; then


In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/html/axis-cgi/axisns.cgi line 18:
		__cgi_errhd $1 "$2"
                            ^-- SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean: 
		__cgi_errhd "$1" "$2"


In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/html/axis-cgi/axisns.cgi line 24:
	logger -t $0[$$] -p warning "$2"
                  ^-- SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean: 
	logger -t "$0"[$$] -p warning "$2"


In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/html/axis-cgi/axisns.cgi line 48:
	if [ $_active_if ]; then
             ^---------^ SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean: 
	if [ "$_active_if" ]; then


In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/html/axis-cgi/axisns.cgi line 55:
res=$(dbus-send --system --print-reply --reply-timeout=180000 	--dest=com.axis.AxisNS --type=method_call /com/axis/AxisNS 	com.axis.AxisNS.$action_opt string:"$interface_opt" 2>&1 || :)
                                                                                                                                                ^---------^ SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean: 
res=$(dbus-send --system --print-reply --reply-timeout=180000 	--dest=com.axis.AxisNS --type=method_call /com/axis/AxisNS 	com.axis.AxisNS."$action_opt" string:"$interface_opt" 2>&1 || :)

For more information:
  https://www.shellcheck.net/wiki/SC1091 -- Not following: /usr/html/axis-cgi...
  https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing ...