summaryrefslogtreecommitdiffstats
path: root/encryptedfs_provisioning.c
diff options
context:
space:
mode:
authorDoug Zongker <dougz@android.com>2010-09-20 21:16:13 +0200
committerDoug Zongker <dougz@android.com>2010-09-21 23:13:45 +0200
commitcc8cd3f3cac07f6927ead277ef390c000ae798d9 (patch)
treeeb69079a188920538b1d955d0da5d594d934723f /encryptedfs_provisioning.c
parentam 3dba40da: (-s ours) am d4208f9f: remove the notion of "root path"; support mixed flash types (do not merge) (diff)
downloadandroid_bootable_recovery-cc8cd3f3cac07f6927ead277ef390c000ae798d9.tar
android_bootable_recovery-cc8cd3f3cac07f6927ead277ef390c000ae798d9.tar.gz
android_bootable_recovery-cc8cd3f3cac07f6927ead277ef390c000ae798d9.tar.bz2
android_bootable_recovery-cc8cd3f3cac07f6927ead277ef390c000ae798d9.tar.lz
android_bootable_recovery-cc8cd3f3cac07f6927ead277ef390c000ae798d9.tar.xz
android_bootable_recovery-cc8cd3f3cac07f6927ead277ef390c000ae798d9.tar.zst
android_bootable_recovery-cc8cd3f3cac07f6927ead277ef390c000ae798d9.zip
Diffstat (limited to 'encryptedfs_provisioning.c')
-rw-r--r--encryptedfs_provisioning.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/encryptedfs_provisioning.c b/encryptedfs_provisioning.c
index 2bcfec161..601c817de 100644
--- a/encryptedfs_provisioning.c
+++ b/encryptedfs_provisioning.c
@@ -186,7 +186,7 @@ int write_encrypted_fs_boolean_property(const char *prop_name, int value) {
int read_encrypted_fs_info(encrypted_fs_info *encrypted_fs_data) {
int result;
int value;
- result = ensure_root_path_mounted("DATA:");
+ result = ensure_path_mounted("/data");
if (result != 0) {
LOGE("Secure FS: error mounting userdata partition.");
return ENCRYPTED_FS_ERROR;
@@ -221,7 +221,7 @@ int read_encrypted_fs_info(encrypted_fs_info *encrypted_fs_data) {
return ENCRYPTED_FS_ERROR;
}
- result = ensure_root_path_unmounted("DATA:");
+ result = ensure_path_unmounted("/data");
if (result != 0) {
LOGE("Secure FS: error unmounting data partition.");
return ENCRYPTED_FS_ERROR;
@@ -232,7 +232,7 @@ int read_encrypted_fs_info(encrypted_fs_info *encrypted_fs_data) {
int restore_encrypted_fs_info(encrypted_fs_info *encrypted_fs_data) {
int result;
- result = ensure_root_path_mounted("DATA:");
+ result = ensure_path_mounted("/data");
if (result != 0) {
LOGE("Secure FS: error mounting userdata partition.");
return ENCRYPTED_FS_ERROR;
@@ -273,7 +273,7 @@ int restore_encrypted_fs_info(encrypted_fs_info *encrypted_fs_data) {
return result;
}
- result = ensure_root_path_unmounted("DATA:");
+ result = ensure_path_unmounted("/data");
if (result != 0) {
LOGE("Secure FS: error unmounting data partition.");
return ENCRYPTED_FS_ERROR;
@@ -281,4 +281,3 @@ int restore_encrypted_fs_info(encrypted_fs_info *encrypted_fs_data) {
return ENCRYPTED_FS_OK;
}
-