remove logging, fix bug
Change-Id: Ia7d0f5e7cdf64235bb2142d9143fff3f289ad605
This commit is contained in:
parent
195e06be59
commit
b2d30187d6
@ -58,7 +58,7 @@ static int restore_internal(const char* bml, const char* filename)
|
||||
|
||||
int cmd_bml_restore_raw_partition(const char *partition, const char *filename)
|
||||
{
|
||||
if (strcmp(partition, "boot") != 0 && strcmp(partition, "recovery") != 0)
|
||||
if (strcmp(partition, "boot") != 0 && strcmp(partition, "recovery") != 0 && strcmp(partition, "recoveryonly") != 0)
|
||||
return 6;
|
||||
|
||||
int ret = -1;
|
||||
|
@ -71,7 +71,6 @@ __system(const char *command)
|
||||
}
|
||||
|
||||
int get_flash_type(const char* partitionType) {
|
||||
printf("get_flash_type partitionType: %s\n", partitionType);
|
||||
int type = UNSUPPORTED;
|
||||
if (strcmp(partitionType, "mtd") == 0)
|
||||
type = MTD;
|
||||
@ -79,7 +78,6 @@ int get_flash_type(const char* partitionType) {
|
||||
type = MMC;
|
||||
else if (strcmp(partitionType, "bml") == 0)
|
||||
type = BML;
|
||||
printf("get_flash_type type: %d\n", type);
|
||||
return type;
|
||||
}
|
||||
|
||||
@ -97,10 +95,7 @@ static int detect_partition(const char *partitionType, const char *partition)
|
||||
type = get_flash_type(partitionType);
|
||||
}
|
||||
|
||||
printf("partitionType: %s\n", partitionType);
|
||||
printf("partition: %s\n", partition);
|
||||
printf("detected type: %d\n", type);
|
||||
return type;
|
||||
return type;
|
||||
}
|
||||
int restore_raw_partition(const char* partitionType, const char *partition, const char *filename)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user