Announcement

Collapse
No announcement yet.

Announcement

Collapse
No announcement yet.

Mounted Samba shares empty

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

    Mounted Samba shares empty

    Hi All, Is it possible with the latest Finless ROM to mount samba shares so other apps can see them. I want to use some slideshow apps that only see empty directories on mounted shares. It is a know issue with versions greater than android 4.2, but there is a patch, wondering if there was any plans to implement this.
    Description of path is here
    Hey Guys, mkasick released in his thread a fix for the mounting problems in Android >= 4.2. Description of the issue: Android >= 4.2 breaks Dalvik-apps that mount file systems to be shared with other apps. This includes CifsManager, Mount...

    and here
    Android 4.2 breaks Dalvik-apps that mount file systems to be shared with other apps. This includes CifsManager, Mount Manager, essentially anything that mounts cifs shares, FUSE file sytems, etc. The symptom is that the mounted contents appear...


    I have looked through the threads here, but can't seem to find any reference to it.
    Thanks for the effort on these roms, slowly replacing most of the PC's around the house with these boxes :-)

    #2
    => http://www.freaktab.com/showthread.p...l=1#post207930
    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


      #3
      Originally posted by no_spam_for_me View Post
      Thanks, not just me then, I think this was posted after I finished looking.
      So do you think we can expect this to be applied to the next rom, would love to see it fixed?

      Comment


        #4
        No, I also have enough trouble at KK with it (I use init-script to mount nfs)...
        Maybe leolas will be able to fix 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


          #5
          Originally posted by no_spam_for_me View Post
          I use init-script to mount nfs
          Can you tell me precisely how you Share this with nfs mount doing?

          Comment


            #6
            Originally posted by avalon666 View Post
            Can you tell me precisely how you Share this with nfs mount doing?
            It only works at finless with init.d support...

            CMD (batch) to upload the script to the box:
            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
            05nfs which runs at every start-up (use linux conform editor like notepad++ ...)
            Code:
            #!/system/bin/sh
            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
            Replace the folder- and share-names...

            Wasser use
            Code:
            IP="192.168.2.20"
            while : ; do
              if ( ping -c 1 $IP ) ; then
                :
              fi
              sleep 1
            done
            instead of
            Code:
            while [ ""`getprop dev.bootcomplete` != "1" ] ; do sleep 1; done
            to be sure the network is up...
            (http://www.freaktab.com/showthread.p...l=1#post200619)
            Attached Files
            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


              #7
              thanks for the info. unfortunately there seems to be no support in the finless nfs 1.8 for the tronsmart s89 give. but I'm prepared for the future. : D

              Comment


                #8
                Originally posted by avalon666 View Post
                thanks for the info. unfortunately there seems to be no support in the finless nfs 1.8 for the tronsmart s89 give. but I'm prepared for the future. : D
                ahhh, sorry, yes, not implemented at the stock-kernel yet...
                Only at wasser kernel (also leolas) and at minix beta...
                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

                Working...
                X