Handle single lun file for USB storage

This commit is contained in:
Dees_Troy
2012-10-13 22:17:20 -04:00
parent 8e337f3605
commit f4ca6128b7
2 changed files with 65 additions and 39 deletions
+64 -38
View File
@@ -1625,48 +1625,74 @@ int TWPartitionManager::usb_storage_enable(void) {
DataManager::GetValue(TW_HAS_DUAL_STORAGE, has_dual);
DataManager::GetValue(TW_HAS_DATA_MEDIA, has_data_media);
if (has_dual == 1 && has_data_media == 0) {
Part = Find_Partition_By_Path(DataManager::GetSettingsStoragePath());
if (Part == NULL) {
LOGE("Unable to locate volume information.");
return false;
}
if (!Part->UnMount(true))
return false;
sprintf(lun_file, CUSTOM_LUN_FILE, 0);
if ((fd = open(lun_file, O_WRONLY)) < 0) {
LOGE("Unable to open ums lunfile '%s': (%s)\n", lun_file, strerror(errno));
return false;
}
if (write(fd, Part->Actual_Block_Device.c_str(), Part->Actual_Block_Device.size()) < 0) {
LOGE("Unable to write to ums lunfile '%s': (%s)\n", lun_file, strerror(errno));
close(fd);
return false;
}
close(fd);
DataManager::GetValue(TW_EXTERNAL_PATH, ext_path);
Part = Find_Partition_By_Path(ext_path);
if (Part == NULL) {
LOGE("Unable to locate volume information.\n");
return false;
}
if (!Part->UnMount(true))
return false;
sprintf(lun_file, CUSTOM_LUN_FILE, 1);
if ((fd = open(lun_file, O_WRONLY)) < 0) {
LOGE("Unable to open ums lunfile '%s': (%s)\n", lun_file, strerror(errno));
return false;
}
if (!TWFunc::Path_Exists(lun_file)) {
// Device doesn't have multiple lun files, mount current storage
Part = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
if (Part == NULL) {
LOGE("Unable to locate volume information for USB storage mode.");
return false;
}
if (!Part->UnMount(true))
return false;
if (write(fd, Part->Actual_Block_Device.c_str(), Part->Actual_Block_Device.size()) < 0) {
LOGE("Unable to write to ums lunfile '%s': (%s)\n", lun_file, strerror(errno));
sprintf(lun_file, CUSTOM_LUN_FILE, 0);
if ((fd = open(lun_file, O_WRONLY)) < 0) {
LOGE("Unable to open ums lunfile '%s': (%s)\n", lun_file, strerror(errno));
return false;
}
if (write(fd, Part->Actual_Block_Device.c_str(), Part->Actual_Block_Device.size()) < 0) {
LOGE("Unable to write to ums lunfile '%s': (%s)\n", lun_file, strerror(errno));
close(fd);
return false;
}
close(fd);
} else {
// Device has multiple lun files
Part = Find_Partition_By_Path(DataManager::GetSettingsStoragePath());
if (Part == NULL) {
LOGE("Unable to locate volume information.");
return false;
}
if (!Part->UnMount(true))
return false;
sprintf(lun_file, CUSTOM_LUN_FILE, 0);
if ((fd = open(lun_file, O_WRONLY)) < 0) {
LOGE("Unable to open ums lunfile '%s': (%s)\n", lun_file, strerror(errno));
return false;
}
if (write(fd, Part->Actual_Block_Device.c_str(), Part->Actual_Block_Device.size()) < 0) {
LOGE("Unable to write to ums lunfile '%s': (%s)\n", lun_file, strerror(errno));
close(fd);
return false;
}
close(fd);
DataManager::GetValue(TW_EXTERNAL_PATH, ext_path);
Part = Find_Partition_By_Path(ext_path);
if (Part == NULL) {
LOGE("Unable to locate volume information.\n");
return false;
}
if (!Part->UnMount(true))
return false;
sprintf(lun_file, CUSTOM_LUN_FILE, 1);
if ((fd = open(lun_file, O_WRONLY)) < 0) {
LOGE("Unable to open ums lunfile '%s': (%s)\n", lun_file, strerror(errno));
return false;
}
if (write(fd, Part->Actual_Block_Device.c_str(), Part->Actual_Block_Device.size()) < 0) {
LOGE("Unable to write to ums lunfile '%s': (%s)\n", lun_file, strerror(errno));
close(fd);
return false;
}
close(fd);
return false;
}
close(fd);
} else {
if (has_data_media == 0)
ext_path = DataManager::GetCurrentStoragePath();
+1 -1
View File
@@ -17,7 +17,7 @@
#ifndef _VARIABLES_HEADER_
#define _VARIABLES_HEADER_
#define TW_VERSION_STR "2.3.0.3"
#define TW_VERSION_STR "2.3.0.4"
#define TW_USE_COMPRESSION_VAR "tw_use_compression"
#define TW_IGNORE_IMAGE_SIZE "tw_ignore_image_size"