In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/bin/acap-symlink-cleanup line 12:
bsl_list=$(find -L $ACAP_CONF_FILE_DIRS -type l 2>/dev/null)
                   ^------------------^ SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean: 
bsl_list=$(find -L "$ACAP_CONF_FILE_DIRS" -type l 2>/dev/null)


In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/bin/acap-symlink-cleanup line 19:
		/\usr/\local/\packages/* | /\opt/*)
                 ^-- SC1001 (info): This \u will be a regular 'u' in this context.
                      ^-- SC1001 (info): This \l will be a regular 'l' in this context.
                             ^-- SC1001 (info): This \p will be a regular 'p' in this context.
                                            ^-- SC1001 (info): This \o will be a regular 'o' in this context.

For more information:
  https://www.shellcheck.net/wiki/SC1001 -- This \l will be a regular 'l' in ...
  https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing ...