In /logs/firmware/patool_extraction/DUMP/mtdblock8_unblob_extracted/mtdblock8_extract/0-9650176.squashfs_v4_le_extract/etc/rc.d/init.d/apConnection.sh line 5:
	ap_enable=`tdb get Wireless AP_Enable_byte`
                  ^-- SC2006 (style): Use $(...) notation instead of legacy backticks `...`.

Did you mean: 
	ap_enable=$(tdb get Wireless AP_Enable_byte)


In /logs/firmware/patool_extraction/DUMP/mtdblock8_unblob_extracted/mtdblock8_extract/0-9650176.squashfs_v4_le_extract/etc/rc.d/init.d/apConnection.sh line 6:
	if [ $ap_enable -eq 1 ]
             ^--------^ SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean: 
	if [ "$ap_enable" -eq 1 ]

For more information:
  https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing ...
  https://www.shellcheck.net/wiki/SC2006 -- Use $(...) notation instead of le...