Here is what I found after playing around with fbind, feel free to correct it if there is any mistake:
** fbind wizard's behavior:
In fbind wizard, there are 3 kinds of binding: Media, Non-media and OBB
There is no difference between Media, Non-media and OBB except the way wizard generates config.txt
Example:
When choosing Media, the next prompting will generate the below line in config.txt for user's input "myDir":
from_to "myDir" ".fbind/myDir"
When choosing Non-media, the next prompting will generate the below line in config.txt for user's input "myDir":
target "myDir"
It is equivalent to:
from_to "myDir" "myDir"
When choosing OBB, the next prompting will generate the below line in config.txt for user's input "myDir"
obbf "myDir"
It is equivalent to:
from_to "Android/obb/myDir" "Android/obb/myDir"
** Here is the fbind wizard's behavior in comparison with fbind -m (fbind mount command)
fbind wizard's behavior
With config from_to "myDir" "myDir":
If there's existing "myDir" in ExternalSD, that "myDir" is renamed to "myDir.old", and then fbind will move intSD-"myDir" to extSD, and mount extSD-"myDir" to intSD-"myDir"
fbind -m (fbind mount command):
With config from_to "myDir" "myDir"
If there's existing "myDir" in InternalSD, that "myDir" is ignored, and then fbind will mount extSD-"myDir" to intSD-"myDir"
Hello,
Here is what I found after playing around with fbind, feel free to correct it if there is any mistake:
** fbind wizard's behavior: In fbind wizard, there are 3 kinds of binding: Media, Non-media and OBB There is no difference between Media, Non-media and OBB except the way wizard generates config.txt
Example:
from_to "myDir" ".fbind/myDir"
target "myDir"
It is equivalent to:from_to "myDir" "myDir"
obbf "myDir"
It is equivalent to:from_to "Android/obb/myDir" "Android/obb/myDir"
** Here is the fbind wizard's behavior in comparison with
fbind -m
(fbind mount command)fbind wizard's behavior With config
from_to "myDir" "myDir"
: If there's existing "myDir" in ExternalSD, that "myDir" is renamed to "myDir.old", and then fbind will move intSD-"myDir" to extSD, and mount extSD-"myDir" to intSD-"myDir"fbind -m (fbind mount command): With config
from_to "myDir" "myDir"
If there's existing "myDir" in InternalSD, that "myDir" is ignored, and then fbind will mount extSD-"myDir" to intSD-"myDir"