In /logs/firmware/patool_extraction/DUMP/mtdblock8_unblob_extracted/mtdblock8_extract/0-9650176.squashfs_v4_le_extract/sbin/reboot line 3:
/bin/busybox reboot $*
                    ^-- SC2048 (warning): Use "$@" (with quotes) to prevent whitespace problems.
                    ^-- SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean: 
/bin/busybox reboot "$*"

For more information:
  https://www.shellcheck.net/wiki/SC2048 -- Use "$@" (with quotes) to prevent...
  https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing ...