In /logs/firmware/patool_extraction/rootfs.img_unblob_extracted/rootfs.img_extract/0-80367616.squashfs_v4_le_extract/usr/html/axis-cgi/applications/config.cgi line 12:
. /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/patool_extraction/rootfs.img_unblob_extracted/rootfs.img_extract/0-80367616.squashfs_v4_le_extract/usr/html/axis-cgi/applications/config.cgi line 13:
. /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/patool_extraction/rootfs.img_unblob_extracted/rootfs.img_extract/0-80367616.squashfs_v4_le_extract/usr/html/axis-cgi/applications/config.cgi line 15:
config_action=get
^-----------^ SC2209 (warning): Use var=$(command) to assign output (or quote to assign string).


In /logs/firmware/patool_extraction/rootfs.img_unblob_extracted/rootfs.img_extract/0-80367616.squashfs_v4_le_extract/usr/html/axis-cgi/applications/config.cgi line 27:
	local modreply1 modreply2
        ^-----------------------^ SC3043 (warning): In POSIX sh, 'local' is undefined.


In /logs/firmware/patool_extraction/rootfs.img_unblob_extracted/rootfs.img_extract/0-80367616.squashfs_v4_le_extract/usr/html/axis-cgi/applications/config.cgi line 42:
		printf "\t<error type=\"$modreply1\" message=\"$modreply2\"/>\r\n"
                       ^-- SC2059 (info): Don't use variables in the printf format string. Use printf '..%s..' "$foo".


In /logs/firmware/patool_extraction/rootfs.img_unblob_extracted/rootfs.img_extract/0-80367616.squashfs_v4_le_extract/usr/html/axis-cgi/applications/config.cgi line 45:
		printf "\t<param name=\"$config_name\" value=\"$modreply1\"/>\r\n"
                       ^-- SC2059 (info): Don't use variables in the printf format string. Use printf '..%s..' "$foo".


In /logs/firmware/patool_extraction/rootfs.img_unblob_extracted/rootfs.img_extract/0-80367616.squashfs_v4_le_extract/usr/html/axis-cgi/applications/config.cgi line 66:
		reply=$($gdbuscmd.Set"$config_name" "$config_value") || {
                        ^-------^ SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean: 
		reply=$("$gdbuscmd".Set"$config_name" "$config_value") || {


In /logs/firmware/patool_extraction/rootfs.img_unblob_extracted/rootfs.img_extract/0-80367616.squashfs_v4_le_extract/usr/html/axis-cgi/applications/config.cgi line 71:
		reply=$($gdbuscmd.Get"$config_name") || {
                        ^-------^ SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean: 
		reply=$("$gdbuscmd".Get"$config_name") || {


In /logs/firmware/patool_extraction/rootfs.img_unblob_extracted/rootfs.img_extract/0-80367616.squashfs_v4_le_extract/usr/html/axis-cgi/applications/config.cgi line 75:
		__construct_reply ok $reply
                                     ^----^ SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean: 
		__construct_reply ok "$reply"


In /logs/firmware/patool_extraction/rootfs.img_unblob_extracted/rootfs.img_extract/0-80367616.squashfs_v4_le_extract/usr/html/axis-cgi/applications/config.cgi line 78:
		reply=$($gdbuscmd.Get"$config_name") || {
                        ^-------^ SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean: 
		reply=$("$gdbuscmd".Get"$config_name") || {


In /logs/firmware/patool_extraction/rootfs.img_unblob_extracted/rootfs.img_extract/0-80367616.squashfs_v4_le_extract/usr/html/axis-cgi/applications/config.cgi line 82:
		__construct_reply ok $reply
                                     ^----^ SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean: 
		__construct_reply ok "$reply"

For more information:
  https://www.shellcheck.net/wiki/SC2209 -- Use var=$(command) to assign outp...
  https://www.shellcheck.net/wiki/SC3043 -- In POSIX sh, 'local' is undefined.
  https://www.shellcheck.net/wiki/SC1091 -- Not following: /usr/html/axis-cgi...