[ROM] CyanogenMod 11 [OFFICIAL] [NIGHTLIES]

PVL_93_RU

Senior Member
Apr 20, 2012
3,244
547
258
27
Moscow
@temasek and others

It was a pain and took me 2 days.. ( every build takes me 5 hours, every repo sync 30 minutes, and yeah.. the merging...i dont want to count the hours
did the first time an own device tree :p)

but finally everything works cm10.2 for tilapia.

Will upload the build shortly but my interent is so slow so it will take a few hours
YESS!!!!!

Dude, message CM team and ask them to become a 10.2 maintainer for Tilapia - WE NEED YOU!:victory:
 
  • Like
Reactions: n3ocort3x

frozst

Senior Member
Feb 24, 2011
209
36
0
I must say that I updated to the 2013 version after all the hassle with the lag and performance, and I couldn't be happier now.

Sent from my Nexus 7 using Tapatalk 4
 

temasek

Senior Member
Feb 2, 2010
23,624
85,270
0
Singapore
created an own thread now so we dont get to offtopic here as its a 10.1.X thread

http://forum.xda-developers.com/showthread.php?t=2428618

@temasek

DEVICE TREE UPLOADED :
https://github.com/n3ocort3x/android_device_asus_tilapia
Thanks to @n3ocort3x I've resumed my cm builds but I'm not creating a thread here since my last tilapia thread closure.

Those who knows my download sites can go ahead and try.

And many thanks again to n3ocort3x for the tilapia device tree which points out my mistake in my failure to bring tilapia up.

Regards
Temasek
 
Last edited:

n3ocort3x

Senior Member
May 10, 2012
5,862
10,822
0
Vienna
Thanks to @n3ocort3x I've resumed my cm builds but I'm not creating a thread here since my last tilapia thread closure.

Those who knows my download sites can go ahead and try.

And many thanks again to n3ocort3x for the tilapia device tree which points out my mistake in my failure to bring tilapia up.

No more post from me here.

Regards
Temasek
Why no more posts? Stay here :) feel free to post ur builds here. (if u want to) That's community :) nothing to thank I provide help where I can and also learned a lot from it

noNeedForAsig
 
  • Like
Reactions: eak1080 and temasek

temasek

Senior Member
Feb 2, 2010
23,624
85,270
0
Singapore
Why no more posts? Stay here :) feel free to post ur builds here. (if u want to) That's community :) nothing to thank I provide help where I can and also learned a lot from it

noNeedForAsig
Btw u probably need a fix on mms if not it will FC, at least it's fixed at my end when I replaced basicsmsreceiver with mms and added a fix to overlay config
 

kenkiller

Senior Member
Nov 21, 2009
3,436
550
0
Hehe....one of the reasons for someone to be a maintainer is to be able to do delta updates. It's not always easy to download the whole package to flash often. :D

Yeah I'm lazy. :)
 

temasek

Senior Member
Feb 2, 2010
23,624
85,270
0
Singapore
Thanks to @n3ocort3x I've resumed my cm builds but I'm not creating a thread here since my last tilapia thread closure.

Those who knows my download sites can go ahead and try.

And many thanks again to n3ocort3x for the tilapia device tree which points out my mistake in my failure to bring tilapia up.

Regards
Temasek
My download sites are.

temasek.hopto.org
http://d-h.st/users/temasek

Currently in Build V5
 

gben1783

New member
Sep 14, 2013
2
0
0
Mount network share (nfs/cifs)

So this finally is my very first noob-post... I'm quite afraid of what's gonna happen with me after that even though I really tried my best to find a solution myself and to post to the right thread:confused: I'm quite familiar with Linux, but not (yet?) android.

Flashed official CM 10.1.2 to my Nexus 7 (it's grouper, but didn't find a 10.1 official thread over there and can't imagine it matters). I'm unable to mount a network share (either nfs or cifs) while the config looks promising to me:

In /proc/config.gz I see this:
Code:
# CONFIG_USB_FUNCTIONFS is not set
CONFIG_NFS_FS=y
# CONFIG_NFS_V3 is not set
# CONFIG_NFS_V4 is not set
CONFIG_ROOT_NFS=y
# CONFIG_NFSD is not set
CONFIG_NFS_COMMON=y
and this:
Code:
CONFIG_CIFS=m
CONFIG_CIFS_STATS=y
# CONFIG_CIFS_STATS2 is not set
# CONFIG_CIFS_WEAK_PW_HASH is not set
CONFIG_CIFS_XATTR=y
CONFIG_CIFS_POSIX=y
# CONFIG_CIFS_DEBUG2 is not set
/proc/filesystems is this (amongst others of course):
Code:
nodev	nfs
nodev	cifs
After modprobe cifs I get this from lsmod:
Code:
cifs 235109 0 - Live 0x00000000
For NFS the best I can get is this:
Code:
# busybox mount -o nolock -t nfs 192.168.2.25:/path/to/share /mnt/cifs
mount: mounting ... on ... failed: Protocol not supported
For CIFS it's this:
Code:
# busybox mount -o user=foo,password=bar -t cifs //192.168.2.25 /mnt/cifs
mount: mounting ... on ... failed
/mnt/cifs is root:root 777.

CIFSmanager seems to use a different mount command and yields "mount: invalid argument" (I also get this if omitting busybox on the above commands)

I'd really appreciate if anybody was able to help me on this issue or direct me somwhere else.
Thank you!
 

gben1783

New member
Sep 14, 2013
2
0
0
CIFS finally working for me

For CIFS it's this:
Code:
# busybox mount -o user=foo,password=bar -t cifs //192.168.2.25 /mnt/cifs
mount: mounting ... on ... failed
Just in case it helps anybody out there... I wasn't able to get NFS up and running, but finally got CIFS working. The crucial part making the above command fail is that there's no "path" after the share's address. To make it clear, this works:
Code:
busybox mount -o user=foo,password=bar -t cifs //192.168.2.25/name_of_some_folder_on_the_share /mnt/cifs
This doesn't work:
Code:
busybox mount -o user=foo,password=bar -t cifs //192.168.2.25 /mnt/cifs
I don't see the reason for this (the //192.168.2.25 without path works for TotalCommander and ES explorer, for example) and, because of this, I need to mount every top folder of my share separately, but hey it's better than nothing;)
 

bedtime_with_the_bear

Senior Member
Mar 31, 2011
219
208
0
Sydney, Australia
Just in case it helps anybody out there... I wasn't able to get NFS up and running, but finally got CIFS working. The crucial part making the above command fail is that there's no "path" after the share's address. To make it clear, this works:
Code:
busybox mount -o user=foo,password=bar -t cifs //192.168.2.25/name_of_some_folder_on_the_share /mnt/cifs
This doesn't work:
Code:
busybox mount -o user=foo,password=bar -t cifs //192.168.2.25 /mnt/cifs
I don't see the reason for this (the //192.168.2.25 without path works for TotalCommander and ES explorer, for example) and, because of this, I need to mount every top folder of my share separately, but hey it's better than nothing;)
The reason is the //192.168.2.25 only specifies the server, and gives the mount command no information whatsoever about what you want to mount, whereas TotalCommander and ES Explorer are browsing the shares presented by the server.

TL; DR: there's a difference between mounting a CIFS share and browsing the server.

Sent from my Nexus 4 using Tapatalk now Free
 
  • Like
Reactions: gben1783