diff options
| author | San Mehat <san@android.com> | 2009-10-12 16:29:01 -0700 |
|---|---|---|
| committer | San Mehat <san@android.com> | 2009-10-12 16:29:01 -0700 |
| commit | 49e2bce5b74129c26a35e25d4693cbfe98c4688e (patch) | |
| tree | 0f1d842ae2cd3258bef7172691c85c622b865450 /DirectVolume.cpp | |
| parent | ae10b91044bf76b40b77d81c169e48e0bbdf6d75 (diff) | |
| download | android_system_vold-49e2bce5b74129c26a35e25d4693cbfe98c4688e.tar.gz android_system_vold-49e2bce5b74129c26a35e25d4693cbfe98c4688e.tar.bz2 android_system_vold-49e2bce5b74129c26a35e25d4693cbfe98c4688e.zip | |
vold2: Wire up more of the mount function
Signed-off-by: San Mehat <san@android.com>
Diffstat (limited to 'DirectVolume.cpp')
| -rw-r--r-- | DirectVolume.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/DirectVolume.cpp b/DirectVolume.cpp index 0817624..515a33a 100644 --- a/DirectVolume.cpp +++ b/DirectVolume.cpp @@ -119,3 +119,8 @@ void DirectVolume::handleDiskRemoved(const char *devpath, NetlinkEvent *evt) { void DirectVolume::handlePartitionRemoved(const char *devpath, NetlinkEvent *evt) { } + +int DirectVolume::prepareToMount(int *major, int *minor) { + errno = ENOSYS; + return -1; +} |
