Apparently, not every device uses emmc

This commit is contained in:
topjohnwu 2017-06-07 11:32:35 +08:00
parent 541ba357bb
commit 8bf382adad

View File

@ -191,7 +191,10 @@ void unlock_blocks() {
return;
while((entry = readdir(dir))) {
if (entry->d_type == DT_BLK && strstr(entry->d_name, "mmc") != NULL) {
if (entry->d_type == DT_BLK &&
strstr(entry->d_name, "ram") == NULL &&
strstr(entry->d_name, "loop") == NULL &&
strstr(entry->d_name, "dm-0") == NULL) {
snprintf(path, sizeof(path), "%s/%s", DEV_BLOCK, entry->d_name);
if ((fd = xopen(path, O_RDONLY)) < 0)
continue;