Announcement

Collapse
No announcement yet.

Hisense 65H8G Boot Loop

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Hisense 65H8G Boot Loop

    Hi i have a Hisense TV that is stuck boot looping. Tried reaching out to hisense for the firmware file but no response and its been a couple weeks. Does anyone here possibly have it? Thanks in advance for any help.

    Here is the label and picture of what it shows on the screen.
    Attached Files

    #2
    Re: Hisense 65H8G Boot Loop

    Your tv got bricked by a recent android update most likely. I would wait for Hisense to send you a new firmware update to put on a usb stick formatted in Fat32. Than update the tv on power on with the USB update.

    Comment


      #3
      Re: Hisense 65H8G Boot Loop

      If the USB update from stick don't kick in / or doing a hard reset .. you will probably need to replace the main board.

      Comment


        #4
        Re: Hisense 65H8G Boot Loop

        in case before was developer option on and USB debug on... safe mode script could help if there no way to new firmware.

        Code:
        #!/bin/bash
        if [ $# -ne 1 ]; then
          echo "i need one parameter: the IP address of your android device"
          exit 1
        fi
        while true; do
          if [ $(./adb devices | grep "$1" | wc -l) -lt 1 ]; then
            ./adb connect $1
            adbExitCode=$?
            if [ $adbExitCode -ne 0 ]; then
              echo "adb connect failed"
            fi
            if [ $adbExitCode -ne 1 ]; then
              ./adb shell su -c 'setprop persist.sys.safemode 1'
        	  ./adb reboot
        	fi
          fi
          sleep 1
        done

        Comment


          #5
          Re: Hisense 65H8G Boot Loop

          I had the same issue with my Hisense 55H9G. I reached out to them on Facebook and they sent me the file. Try Facebook.

          Comment


            #6
            Re: Hisense 65H8G Boot Loop

            Here is the link to Hisense tv firmware: https://www.hisense-usa.com/support/firmware-download

            Comment

            Working...