I've been getting the same problem. Occasionally however, it works fine.
Sent from my MB526 using xda premium
Sent from my MB526 using xda premium
I might have some influence in that as I was getting on nerves of one of the writers cause post isn't out yetDefy cm10.1 gets some Portal love..![]()
http://www.xda-developers.com/android/unofficial-cm10-1-lands-on-the-defy-defy/
sent from my awesome DEFY+
current ROM: cm10 JB4.1.2
Kernel: latest Blechdose kernel
Google disabled it automatically on Nexus 4 and Gnex.Can multiuser be fully disabled? I find it more useful on a tablet, let's say. Do others agree on this?
Maybe it will make it easier for quarx to develop
It wouldn't make it easier. The problem is the mounting. Until now, we used Mass Storage. Now it's MTP (fuse is the Linux MTP driver). That's the only option in 4.2 and it was implemented for multiuser Disabling multiuser won't make it easier for development. We still need that driver as Quarx said.I am 100% agree on this.
IMO, multiuser is practically useless on phone because a phone is usually a private device.
So, if it will also make it easier for Quarx to port 4.2.1 to our Defy, it would be great.![]()
Quarx said that we canThen is that means we need a3.0 kernel under to use a stable cm10.1?
Sent from my MB526 using xda app-developers app
Do type of formating sdcard make any difference - far32 vs ext4 for example? Shouldn't be easier mount sdcard formated in native Linux format?Quarx said that we can
1) Use 3.0 kernel
2) Backport 3.0 kernel drivers to the current kernel
3) Something else
Sent from my MB526 using xda premium
That is different. fat32 and ext4 are file systems. Mass Storage and MTP are mounting methods. Here's an example, my father's Galaxy S II mounts with MTP by default (for now). Linux requires extra steps for mounting MTP. I always have to enable Mass Storage before connecting to my PC with Linux.Do type of formating sdcard make any difference - far32 vs ext4 for example? Shouldn't be easier mount sdcard formated in native Linux format?
on early-init
export EXTERNAL_STORAGE /storage/sdcard0
mkdir /storage 0050 system sdcard_r
mkdir /storage/sdcard0 0000 system system
symlink /storage/sdcard0 /sdcard
symlink /storage/sdcard0 /mnt/sdcard
# See storage config details at http://source.android.com/tech/storage/
mkdir /mnt/shell 0700 shell shell
mkdir /storage 0050 root sdcard_r
Yes, on RAZR it work too, but on defy it doesn't work. I have no idea why it happens.SDCARD: This works for HTC HD2
export EXTERNAL_STORAGE /storage/sdcard1
export SECONDARY_STORAGE /storage/sdcard0
mkdir /storage/sdcard0 0000 system system
mkdir /storage/sdcard1 0000 system system
symlink /storage/sdcard1 /sdcard-ext
symlink /storage/sdcard1 /mnt/sdcard-ext
symlink /storage/sdcard0 /mnt/sdcard
why /storage/sdcard0 or sdcard1? never heard about that... why don't use /mnt/sdcard o /mnt/sdcard-ext without symlink?Yes, on RAZR it work too, but on defy it doesn't work. I have no idea why it happens.
Code:export EXTERNAL_STORAGE /storage/sdcard1 export SECONDARY_STORAGE /storage/sdcard0 mkdir /storage/sdcard0 0000 system system mkdir /storage/sdcard1 0000 system system symlink /storage/sdcard1 /sdcard-ext symlink /storage/sdcard1 /mnt/sdcard-ext symlink /storage/sdcard0 /mnt/sdcard
export SECONDARY_STORAGE /mnt/sdcard
mkdir /mnt/sdcard 0000 system system
mkdir /mnt/sdcard-ext 0000 system system
symlink /mnt/sdcard-ext /sdcard-ext
symlink /mnt/sdcard /sdcard
Could something like this help instead??Yes, on RAZR it work too, but on defy it doesn't work. I have no idea why it happens.
Code:export EXTERNAL_STORAGE /storage/sdcard1 export SECONDARY_STORAGE /storage/sdcard0 mkdir /storage/sdcard0 0000 system system mkdir /storage/sdcard1 0000 system system symlink /storage/sdcard1 /sdcard-ext symlink /storage/sdcard1 /mnt/sdcard-ext symlink /storage/sdcard0 /mnt/sdcard
on init
# for backwards compatibility
# for backwards compatibility
mkdir /mnt/shell/emulated 0700 shell shell
mkdir /storage/emulated 0555 root root
mkdir /storage 0550 system sdcard_r
export EXTERNAL_STORAGE /storage/emulated/legacy
export EMULATED_STORAGE_SOURCE /mnt/shell/emulated
export EMULATED_STORAGE_TARGET /storage/emulated
# Support legacy paths
symlink /storage/emulated/legacy /sdcard
symlink /storage/emulated/legacy /mnt/sdcard
symlink /storage/emulated/legacy /storage/sdcard0
symlink /mnt/shell/emulated/0 /storage/emulated/legacy
# Enable secondary storage
export SECONDARY_STORAGE /storage/sdcard1
# make the pathes for the external media mounts
mkdir /storage/sdcard1 0000 system system
mkdir /storage/sdcard2 0000 system system
mkdir /storage/usbdisk0 0000 system system
mkdir /storage/usbdisk1 0000 system system