In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/lib/conf-migrate/upgrade-run.d/image2d line 3:
. /lib/rcscripts/sh/error.sh
  ^------------------------^ SC1091 (info): Not following: /lib/rcscripts/sh/error.sh was not specified as input (see shellcheck -x).


In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/lib/conf-migrate/upgrade-run.d/image2d line 36:
if [ -e $1$CONF ]; then
        ^-- SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean: 
if [ -e "$1"$CONF ]; then


In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/lib/conf-migrate/upgrade-run.d/image2d line 42:
			$1$CONF > $CONF
                        ^-- SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean: 
			"$1"$CONF > $CONF


In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/lib/conf-migrate/upgrade-run.d/image2d line 56:
			mkdir -p $(dirname $to)
                                 ^------------^ SC2046 (warning): Quote this to prevent word splitting.
                                           ^-^ SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean: 
			mkdir -p $(dirname "$to")


In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/lib/conf-migrate/upgrade-run.d/image2d line 57:
			cp $from $to
                           ^---^ SC2086 (info): Double quote to prevent globbing and word splitting.
                                 ^-^ SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean: 
			cp "$from" "$to"

For more information:
  https://www.shellcheck.net/wiki/SC2046 -- Quote this to prevent word splitt...
  https://www.shellcheck.net/wiki/SC1091 -- Not following: /lib/rcscripts/sh/...
  https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing ...