Announcement

Collapse
No announcement yet.

Announcement

Collapse
No announcement yet.

K-R42 - wasser firmware - JB Android 4.2.2

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

    Perfect on CX-921 16GB, no BT, non RK3188T ( first revision )

    Hey Wasser,
    your 1.2.5 rom is absolute perfect!! I flashed it with your K-R42 old revision kernel on my old revision CX-921 with non RK3188T Chipset. Installed Beyond XBMC 3.3 on top, best experience ever!!!
    Streamed a lot of 8 to 10 GB 1080p mkv and AVCHD files over lan with smb setup in xbmc.
    Absolutely no dropping frames, no juddering, working dolby/dts passthrough over hdmi ( this box has no spdif ), working lan/wlan. The only thing not working is my stock remote. About 4 buttons are recognized, but with wrong mapping. So again, can you please, please!!! build a CX-921 specific kernel? I think you only have to change the IR driver ;-) I would provide all informations you need!
    Donations are welcome and will be shared with other devs:

    DONATIONS

    CX-921 TV-Box without Bluetooth (RK3188 / RTL8188 Wifi), CX-921b TV-Box (RK3188T / AP6210 Wifi), T428 TV Stick (RK3188 / AP6330 Wifi), CX919 TV Stick (RK3188 / AP6210 Wifi)

    Comment


      Originally posted by alexge View Post
      Hello.
      ...But unfortunately not able to recognize my logitech C170 webcam, while the version 1.2.4 it worked very well.
      Is it possible to find a solution for this problem?
      Its mine problem too.
      Any chances for fix it?
      X92 3/32 Android TV Box with Ugoos AM3 Firmware

      Comment


        Originally posted by fes View Post
        Thanks for making a thread about your kernel. Perhaps it's a good idea to describe how to install new kernels? That should avoid a lot of questions i think.

        I've got a question to start off with: does wifi work after suspend? I've tried one of your earlier kernels and it didn't come up again after suspend.

        Edit: the link points to the t-42 version.
        Another great idea is if people would upload a vold.fstab to allow sd storage as main storage,as people with learning problems like my self struggle with editing the file,i just want my 32gb kingston to use as main storage on the 1.25 firmware please if anyone can upload that for me please do,i have a k-r42 old firmware model.
        What is the world if you don't explore?

        Comment


          I have a TN-BX09_V2.1 CH001, 1329 2013/05/31.
          I've tested almost all FW's. Some of fw's works, some not, but its not important. The latest (1.2.5) fw is very fast - even faster than android 4.4 kikat that I liked very much (and my board too ) but there is one annoying problem in 1.2.5 fw with my board. When I try to watch 1080p movie over LAN in xbmc (latest 8 march gotham beta and older alpha ones also from gotham project): after while fps has running down and finally movie stops on frame. When I rewind (without shutdown) the movie plays fine but again after some time (about 10 secs) the story appears agan. It does not occur in kikat fw.
          Attached Files
          X92 3/32 Android TV Box with Ugoos AM3 Firmware

          Comment


            Can this firmware support an external USB bluetooth dongle in t-r42 android tv?

            Comment


              Originally posted by pavlik View Post
              When I try to watch 1080p movie over LAN in xbmc (latest 8 march gotham beta and older alpha ones also from gotham project): after while fps has running down and finally movie stops on frame. When I rewind (without shutdown) the movie plays fine but again after some time (about 10 secs) the story appears agan. It does not occur in kikat fw.
              At my box the wasser 1.2.3 (old rev 1080p) with included xbmc works fine (mkv's <=15GB)
              I use nfs via init.d
              RK3288 Devices
              - Overview BOX (LINK !)
              - Overview STICK (Dongle) (LINK !)

              MINIX NEO: Z64 W/A - (Intel Z3735F); X8-H Plus - (Amlogic S812H); A2 Lite (sponsored by minix.com.hk)
              UGOOS UT3S (4/32GB with fan) - FW 2.0.6 - (RK3288) (sponsored by GearBest.com)
              Tronsmart Draco AW80 Meta (2/16GB) - FW v2.0rc3 - (Allwinner A80) (sponsored by GeekBuying.com)
              Beelink / UBOX R89 - FW 111k4110_1219 - (RK3288) (sponsored by Netxeon (Beelink))

              RK3188: pcb => "CH001 1332 TN-BX09_V2.1" (K-R42 / CS918...) => wasser KK 1.0.3 (old rev)
              Fly Mouse Mini Wireless Keyboard with 2 mode learning IR remote 'iPazzPort KP-810-16'

              Comment


                [QUOTE=I use nfs via init.d[/QUOTE]????

                Could You explain me this.
                I dont know hat is it
                X92 3/32 Android TV Box with Ugoos AM3 Firmware

                Comment


                  NFS instead of CIFS (NFS is a little bit faster because it has not so much overhead at his protocol)
                  My Server is a Windows PC with haneWIN NFS Server because only at XP the NFS Server is available (MS Windows XP Services for UNIX Version 3.5 (SFU)).

                  And that is the way I handle it:
                  File e.g. '05nfs' at the '/system/etc/init.d' (at windows use e.g. 'notepad++' because of the cr/lf in Linuxformat)
                  Code:
                  #!/system/bin/sh
                  # *************
                  # * NFS mount *
                  # *************
                  # copy to /system/etc/init.d
                  # change permisions to "755" "rwx r-x r-x"
                  # reboot
                  # -------------------
                  # using this -> cmd-install-NFS.cmd <-
                  # adb remount -oremount,rw /
                  # adb push 05nfs /system/etc/init.d
                  # adb shell chmod 0755 /system/etc/init.d/05nfs
                  # adb remount -oremount,ro /
                  # adb shell ls -al /system/etc/init.d/
                  # adb reboot
                  # pause
                  # -------------------
                  while [ ""`getprop dev.bootcomplete` != "1" ] ; do sleep 1; done
                  mount -o rw,remount /
                  mkdir /mnt/XPFilme
                  mount -o ro,remount /
                  sleep 2
                  busybox mount -t nfs 192.168.2.1:/XPFilme /mnt/XPFilme -o ro,intr,soft,udp,nolock,rsize=8192,wsize=8192
                  # done
                  copy via adb (batch):
                  Code:
                  adb remount -oremount,rw /
                  adb push 05nfs /system/etc/init.d
                  adb shell chmod 0755 /system/etc/init.d/05nfs
                  adb remount -oremount,ro /
                  adb shell ls -al /system/etc/init.d/
                  adb reboot
                  pause
                  and than at xbmc I use the folder instead of the network, so it is without the "caching"...
                  Attached Files
                  Last edited by no_spam_for_me; 10 March 2014, 12:37. Reason: attachment
                  RK3288 Devices
                  - Overview BOX (LINK !)
                  - Overview STICK (Dongle) (LINK !)

                  MINIX NEO: Z64 W/A - (Intel Z3735F); X8-H Plus - (Amlogic S812H); A2 Lite (sponsored by minix.com.hk)
                  UGOOS UT3S (4/32GB with fan) - FW 2.0.6 - (RK3288) (sponsored by GearBest.com)
                  Tronsmart Draco AW80 Meta (2/16GB) - FW v2.0rc3 - (Allwinner A80) (sponsored by GeekBuying.com)
                  Beelink / UBOX R89 - FW 111k4110_1219 - (RK3288) (sponsored by Netxeon (Beelink))

                  RK3188: pcb => "CH001 1332 TN-BX09_V2.1" (K-R42 / CS918...) => wasser KK 1.0.3 (old rev)
                  Fly Mouse Mini Wireless Keyboard with 2 mode learning IR remote 'iPazzPort KP-810-16'

                  Comment


                    Originally posted by pavlik View Post
                    latest 8 march gotham beta and older alpha ones also from gotham project
                    If you want to use another one, try Beyond XBMC
                    RK3288 Devices
                    - Overview BOX (LINK !)
                    - Overview STICK (Dongle) (LINK !)

                    MINIX NEO: Z64 W/A - (Intel Z3735F); X8-H Plus - (Amlogic S812H); A2 Lite (sponsored by minix.com.hk)
                    UGOOS UT3S (4/32GB with fan) - FW 2.0.6 - (RK3288) (sponsored by GearBest.com)
                    Tronsmart Draco AW80 Meta (2/16GB) - FW v2.0rc3 - (Allwinner A80) (sponsored by GeekBuying.com)
                    Beelink / UBOX R89 - FW 111k4110_1219 - (RK3288) (sponsored by Netxeon (Beelink))

                    RK3188: pcb => "CH001 1332 TN-BX09_V2.1" (K-R42 / CS918...) => wasser KK 1.0.3 (old rev)
                    Fly Mouse Mini Wireless Keyboard with 2 mode learning IR remote 'iPazzPort KP-810-16'

                    Comment


                      I have router with shareport.

                      Originally posted by no_spam_for_me View Post
                      If you want to use another one, try Beyond XBMC
                      I already tested it but only on kikat fw. I will try tommorow with 1.2.5 Thanks.
                      X92 3/32 Android TV Box with Ugoos AM3 Firmware

                      Comment


                        Ok, shareport means D-LINK, but how to you connect to the attached USB-HDD at the D-LINK? Via DLNA?
                        RK3288 Devices
                        - Overview BOX (LINK !)
                        - Overview STICK (Dongle) (LINK !)

                        MINIX NEO: Z64 W/A - (Intel Z3735F); X8-H Plus - (Amlogic S812H); A2 Lite (sponsored by minix.com.hk)
                        UGOOS UT3S (4/32GB with fan) - FW 2.0.6 - (RK3288) (sponsored by GearBest.com)
                        Tronsmart Draco AW80 Meta (2/16GB) - FW v2.0rc3 - (Allwinner A80) (sponsored by GeekBuying.com)
                        Beelink / UBOX R89 - FW 111k4110_1219 - (RK3288) (sponsored by Netxeon (Beelink))

                        RK3188: pcb => "CH001 1332 TN-BX09_V2.1" (K-R42 / CS918...) => wasser KK 1.0.3 (old rev)
                        Fly Mouse Mini Wireless Keyboard with 2 mode learning IR remote 'iPazzPort KP-810-16'

                        Comment


                          I have not known but very good router Sapido GR-1736.
                          It has Gigabit ethernet and 600Mbps Dualband Wi-Fi.
                          I've connect it very simple - via samba by wifi.
                          X92 3/32 Android TV Box with Ugoos AM3 Firmware

                          Comment


                            Originally posted by pavlik View Post
                            Sapido GR-1736
                            ... and has built-in FTP and Samba servers
                            OK, samba means CIFS is available, so you can use 'cifs' instead of 'nfs' at the script at the mount...
                            (with the Sapido GR-1736 ip-address and the folder-name that you share at it)
                            RK3288 Devices
                            - Overview BOX (LINK !)
                            - Overview STICK (Dongle) (LINK !)

                            MINIX NEO: Z64 W/A - (Intel Z3735F); X8-H Plus - (Amlogic S812H); A2 Lite (sponsored by minix.com.hk)
                            UGOOS UT3S (4/32GB with fan) - FW 2.0.6 - (RK3288) (sponsored by GearBest.com)
                            Tronsmart Draco AW80 Meta (2/16GB) - FW v2.0rc3 - (Allwinner A80) (sponsored by GeekBuying.com)
                            Beelink / UBOX R89 - FW 111k4110_1219 - (RK3288) (sponsored by Netxeon (Beelink))

                            RK3188: pcb => "CH001 1332 TN-BX09_V2.1" (K-R42 / CS918...) => wasser KK 1.0.3 (old rev)
                            Fly Mouse Mini Wireless Keyboard with 2 mode learning IR remote 'iPazzPort KP-810-16'

                            Comment


                              Exactly that way
                              X92 3/32 Android TV Box with Ugoos AM3 Firmware

                              Comment


                                GPU overclocking

                                Hi wasser,
                                I'm grateful to you for 1.2.5 very much.
                                Everything works great with this ROM on my 99%??? "T" device.
                                Only one thing I'm not happy with is 446 GPU locking.
                                Do you have any idea concernint the overriding to 600?
                                Kind regards
                                CS918II/16GB(HTC-031-V1.0 board)
                                CS918 (TN-BX09_V2.1 2013/05/31) FW: k-r42-old_revision-wasser-1.2.3- fried by 12V PS
                                K-R42 board version B351_V2.0 1348, wifi Realtek8188ETV , RK3188T;FW: wasser-firmware-kr42-new-1.0.3

                                Comment

                                Working...
                                X