more logging

Change-Id: I2f5f37751f16c8b50f5c3ccf1eb56b9b52f44c6b
This commit is contained in:
Koushik Dutta 2011-05-26 17:49:56 -07:00
parent 4187347329
commit 30712302e0

View File

@ -71,6 +71,7 @@ __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;
@ -78,6 +79,7 @@ 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;
}