Announcement

Collapse
No announcement yet.

Announcement

Collapse
No announcement yet.

[ROM] OpenELEC for Amlogic-based TV boxes (M8, MXQ, TV110, MX2/G18)

Collapse
This is a sticky topic.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Originally posted by startreksuite View Post
    I don't know what will help, but what I would do is start fresh. I found a link to the MX firmware from a site, though some mentioned another site that costs money. Here's the free one. https://mega.nz/#!AlVUnDQa!gRBryRmS7...94x1CybBwdpgMI and here's the website. http://chinagadgetsreviews.blogspot....422-stock.html . Drop it on an sd card, following the toothpick method. Do a cache wipe, etc before you get started. Then toothpick again with codesnake's version, or put libre elec on. Good luck!
    Thanks for your reply.
    However for some reason i cant get my box into recovery mode.
    All i get is a blue screen saying no signal.
    Any ideas how to solve this?
    thanks once again.

    Comment


      I've read different ways of getting into recovery. Check out these two links https://www.entertainmentbox.com/unbrick-t8/ and http://freaktab.com/forum/tv-player-...-recovery-mode.

      Comment


        I'M guessing replace the T8 firmware with your mx firmware with the uboot tool.

        Comment


          Originally posted by startreksuite View Post
          I've read different ways of getting into recovery. Check out these two links https://www.entertainmentbox.com/unbrick-t8/ and http://freaktab.com/forum/tv-player-...-recovery-mode.
          Ok, I tried the firmware etc from ur first link.
          I managed to get andriod logo up. Once that had completed the box just switched off and back to blue screen.
          Think this box has had its best days.

          Comment


            sorry to hear that. On the bright side, you have an excuse to get a new box. The M8S's I hear are good for about $52. link https://www.amazon.com/AKASO-M8S-Oct...DSTMM92W7A779H
            Hope that is allowed, just putting it up for an idea of what is available.

            Comment


              Last post. Here's a link to a site that has firmware that will supposedly unbrick it. Pick the right MX box from pics and description http://www.ember-dev.com/downloads/
              Here's where the original post started, and even mentioned mx2 that will supposedly will work. https://www.digitalworldz.co.uk/stre...een-death.html

              Comment


                Originally posted by startreksuite View Post
                Last post. Here's a link to a site that has firmware that will supposedly unbrick it. Pick the right MX box from pics and description http://www.ember-dev.com/downloads/
                Here's where the original post started, and even mentioned mx2 that will supposedly will work. https://www.digitalworldz.co.uk/stre...een-death.html

                Yep tried that aswell. Still no luck.
                Git power to the box but won't flash.
                Blue screen that's about it.
                Thanks for u help anyway👍

                Comment


                  Sure, sorry it didn't help.

                  Comment


                    Hi Everyone,

                    I tried to search for OpenELEC-CodeSnake-Meson8-K200-devel-320a148.zip

                    Is there a site that I can obtain this file.

                    Any help would be appreciated.

                    Thank you.

                    Comment


                      Finally found it.

                      Comment


                        Great thread! I've come here because my MX2 has no Android Lollipop (5.0) and therefore I can't upgrade to Kodi 17 as I have with some of my more modern boxes. But since I have 4 of these MX2 boxes, I really want to keep them going...

                        I've successfully installed the Openelec builds provided here.

                        Is there any chance that someone will build a Kodi 17 version for my MX2 in the near future?

                        Comment


                          Hi I also want to know if there will be any update to this as it is still on Kodi version 15.2 and I'm sure at some point very soon addons will stop working because it is still on a old version of kodi I'm on a nemsis version from a few pages back but I want to know if codesnake will do any future updates anyone out there know if he is working on this still ? he has not posted on here in a long time I know he must be busy working on libereelec so he may have just moved on from this thanks for any info on this guys

                          Comment


                            Hi folks, I've been reading through this forum in the last two weeks and very excited about bringing new life to my MX2 Gbox's. I was running the original android/xbmc build up until recently. I am now running the Nemsis build with Jarvis 16 and love it! I have one issue tho... I am trying to install IP Vanish VPN, but not able to get Openvpn addon to work. has anyone had success with this? Everything I have read says OE 7 already has binaries for Openvpn, but I've had to install it on the Nemsis build, but kee getting errors when trying to connect. Thanks in advance for your help.

                            Comment


                              Hi,

                              Problem:

                              After upgrading the M8N form 5.0.3 to 6.0.3 (OpenELEC-Amlogic.M8.arm-6.0.3.tar) it stopped to load custom remote.conf file at start.

                              At the same time I can load it manually using:
                              /usr/bin/remotecfg /storage/.config/remote.conf

                              Cause:

                              I found that this is because of wrong configuration file /usr/lib/openelec/remote-config, which is loaded by amlogic-remotecfg.service at start. It checks the standard built-in remote.conf file first an loads it, not even checking for custom one. It will never load custom remote.conf file as the standard file always exist.
                              ...
                              if [ -f /etc/amremote/remote.conf ]; then
                              /usr/bin/remotecfg /etc/amremote/remote.conf
                              elif [ -f /storage/.config/remote.conf ]; then
                              /usr/bin/remotecfg /storage/.config/remote.conf
                              elif [ "$LSUSB_RET" = 0 ]; then
                              /usr/bin/remotecfg /etc/amremote/wetek.conf
                              elif [ "$LSUSB_RET" = 1 ]; then
                              /usr/bin/remotecfg /etc/amremote/openelec.conf
                              fi
                              Reference:
                              https://github.com/OpenELEC/OpenELEC...otecfg.service

                              Solution:

                              We need to modify the /usr/lib/openelec/remote-config, but the file system where it's located is Read-only, so we cannot do that directly.

                              We have to create another custom amlogic-remotecfg.service in /storage/.config/system.d (if I remember correctly), and point it to another custom remote-config in /storage/.config/ with correct command order along with your custom remote.conf file:

                              /storage/.config/system.d/amlogic-remotecfg.service:
                              [Unit]
                              Description=Amlogic IR remote support
                              [Service]
                              Type=oneshot
                              ExecStart=/storage/.config/remote-config
                              RemainAfterExit=yes
                              [Install]
                              WantedBy=basic.target
                              /storage/.config/remote-config
                              ...
                              if [ -f /storage/.config/remote.conf ]; then
                              /usr/bin/remotecfg /storage/.config/remote.conf
                              elif [ -f /etc/amremote/remote.conf ]; then
                              /usr/bin/remotecfg /etc/amremote/remote.conf
                              elif [ "$LSUSB_RET" = 0 ]; then
                              /usr/bin/remotecfg /etc/amremote/wetek.conf
                              elif [ "$LSUSB_RET" = 1 ]; then
                              /usr/bin/remotecfg /etc/amremote/openelec.conf
                              fi
                              That's it.
                              Last edited by Tepp; 16 January 2017, 12:04.

                              Comment


                                Originally posted by freebase1ca View Post
                                Is there any chance that someone will build a Kodi 17 version for my MX2 in the near future?
                                Originally posted by ruppert View Post
                                Hi I also want to know if there will be any update to this as it is still on Kodi version 15.2 and I'm sure at some point very soon addons will stop working because it is still on a old version of kodi I'm on a nemsis version from a few pages back but I want to know if codesnake will do any future updates anyone out there know if he is working on this still ? he has not posted on here in a long time I know he must be busy working on libereelec so he may have just moved on from this thanks for any info on this guys
                                I'm working on a new LibreELEC 8.0 build for MX2/G18 devices. Look here: https://forum.libreelec.tv/thread-4858.html

                                Update from OpenELEC 6.0.3 using .tar should work.

                                Comment

                                Working...
                                X