more logging
Change-Id: I2f5f37751f16c8b50f5c3ccf1eb56b9b52f44c6b
This commit is contained in:
parent
4187347329
commit
30712302e0
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user