Recent content by alegru

  1. alegru

    Post [Project Treble][SM-T820][SM-T825] based on Android 9.0 20190408

    This is great! Hey everyone, this project is big news! I am so happy that we can use Treble GSI, using the cache partition via squashfs is a really elegant way for this. Almost everything works on my T820! I am using Phh-Treble AOSP 9.0 v112, MindTheGapps and Magisk. Even adoptable storage...
  2. alegru

    Post [Kernel] [FIRE-ICE] [06/01] [Android 7.x 6.x]

    Follow-up for nfs: This was difficult to figure out. You need busybox and the command is su --mount-master -c "busybox mount -t nfs -o ro,nolock,hard,vers=3 ip:/export/share /mnt/nfs/share" USBhost would be great if you could make sshfs work, I would try it out and post my findings :)
  3. alegru

    Post [Kernel] [FIRE-ICE] [06/01] [Android 7.x 6.x]

    Oh yes, works perfectly :D Can connect to my SMB server using SMBv2.1 For future reference, I use this command: su --mount-master -c mount -t cifs -o rw,username=user,password=pass,iocharset=utf8,file_mode=0666,dir_mode=0777,noperm,vers=2.1 //ip/share /mnt/cifs/share Thank you for your fast...
  4. alegru

    Post [Kernel] [FIRE-ICE] [06/01] [Android 7.x 6.x]

    Wow! That was fast! But I cannot get the device to boot, stuck at Google logo. Did something go wrong? 10.6.8 07-25-2017 boots fine.
  5. alegru

    Post [Kernel] [FIRE-ICE] [06/01] [Android 7.x 6.x]

    enable Network File Systems Hey USBhost! I have another request. Could you please enable support for NFSv2/3/4 and SMBv2.1 ? I really want to get rid of SMBv1, even Microsoft suggests to disable it (looking at you, EternalBlue). Kernel 3.10.x supports SMBv2.1, but you need to compile it in...
  6. alegru

    Post [Kernel] [FIRE-ICE] [06/01] [Android 7.x 6.x]

    I'm using Tasker to automate mounting. Try this in a shell: su --mount-master -c mount -t cifs -o rw,username=xxx,password=xxx,iocharset=utf8,file_mode=0666,dir_mode=0777,noperm //ip/share /local_mountpoint
  7. alegru

    Post [Kernel] [FIRE-ICE] [06/01] [Android 7.x 6.x]

    Ok, this is the kernel I use: https://gitlab.com/engstk/hammerhead/blob/blu_spark/arch/arm/configs/hammerhead_defconfig#L590 I am no kernel developer, but this line comes to mind. Comparing it with your configuration...
  8. alegru

    Post [Kernel] [FIRE-ICE] [06/01] [Android 7.x 6.x]

    I really like your kernel, made my tablet fly :good: Would it be possible to include utf-8 support for cifs in your next release? Atm, only iocharset=iso8859-1 is possible, special characters won't work in cifs shares. The kernel I am using on my Nexus 5 has other charsets built in, it would be...