Loading extendedcommands.c +1 −1 Original line number Diff line number Diff line Loading @@ -652,7 +652,7 @@ int format_unknown_device(const char *device, const char* path, const char *fs_t Volume *vol = volume_for_path("/sd-ext"); if (vol == NULL || 0 != stat(vol->blk_device, &st)) { ui_print("No app2sd partition found. Skipping format of /sd-ext.\n"); LOGI("No app2sd partition found. Skipping format of /sd-ext.\n"); return 0; } } Loading nandroid.c +2 −2 Original line number Diff line number Diff line Loading @@ -439,12 +439,12 @@ int nandroid_backup(const char* backup_path) vol = volume_for_path("/sd-ext"); if (vol == NULL || 0 != stat(vol->blk_device, &s)) { ui_print("No sd-ext found. Skipping backup of sd-ext.\n"); LOGI("No sd-ext found. Skipping backup of sd-ext.\n"); } else { if (0 != ensure_path_mounted("/sd-ext")) ui_print("Could not mount sd-ext. sd-ext backup may not be supported on this device. Skipping backup of sd-ext.\n"); LOGI("Could not mount sd-ext. sd-ext backup may not be supported on this device. Skipping backup of sd-ext.\n"); else if (0 != (ret = nandroid_backup_partition(backup_path, "/sd-ext"))) return ret; } Loading Loading
extendedcommands.c +1 −1 Original line number Diff line number Diff line Loading @@ -652,7 +652,7 @@ int format_unknown_device(const char *device, const char* path, const char *fs_t Volume *vol = volume_for_path("/sd-ext"); if (vol == NULL || 0 != stat(vol->blk_device, &st)) { ui_print("No app2sd partition found. Skipping format of /sd-ext.\n"); LOGI("No app2sd partition found. Skipping format of /sd-ext.\n"); return 0; } } Loading
nandroid.c +2 −2 Original line number Diff line number Diff line Loading @@ -439,12 +439,12 @@ int nandroid_backup(const char* backup_path) vol = volume_for_path("/sd-ext"); if (vol == NULL || 0 != stat(vol->blk_device, &s)) { ui_print("No sd-ext found. Skipping backup of sd-ext.\n"); LOGI("No sd-ext found. Skipping backup of sd-ext.\n"); } else { if (0 != ensure_path_mounted("/sd-ext")) ui_print("Could not mount sd-ext. sd-ext backup may not be supported on this device. Skipping backup of sd-ext.\n"); LOGI("Could not mount sd-ext. sd-ext backup may not be supported on this device. Skipping backup of sd-ext.\n"); else if (0 != (ret = nandroid_backup_partition(backup_path, "/sd-ext"))) return ret; } Loading