multirom: updates to support installing to external SD

This commit is contained in:
Captain Throwback
2014-09-29 10:15:16 -04:00
parent c933a1172d
commit 246e71e754
3 changed files with 3 additions and 3 deletions

View File

@@ -2200,7 +2200,7 @@ int multirom_update_partitions(struct multirom_status *s)
tok = strrchr(line, '/')+1;
name = strndup(tok, strchr(tok, ':') - tok);
if(strncmp(name, "mmcblk", 6) == 0 || strncmp(name, "dm-", 3) == 0) // ignore internal nand
if(strncmp(name, "mmcblk0", 7) == 0 || strncmp(name, "dm-", 3) == 0) // ignore internal nand
{
free(name);
goto next_itr;