fallback when devfs names aren't found
SVN-Revision: 6541
This commit is contained in:
parent
ed1a641e15
commit
99c848c555
1 changed files with 6 additions and 1 deletions
|
@ -197,13 +197,18 @@ mtd_open(const char *mtd, int flags)
|
|||
FILE *fp;
|
||||
char dev[PATH_MAX];
|
||||
int i;
|
||||
int ret;
|
||||
|
||||
if ((fp = fopen("/proc/mtd", "r"))) {
|
||||
while (fgets(dev, sizeof(dev), fp)) {
|
||||
if (sscanf(dev, "mtd%d:", &i) && strstr(dev, mtd)) {
|
||||
snprintf(dev, sizeof(dev), "/dev/mtd/%d", i);
|
||||
if ((ret=open(dev, flags))<0) {
|
||||
snprintf(dev, sizeof(dev), "/dev/mtd%d", i);
|
||||
ret=open(dev, flags);
|
||||
}
|
||||
fclose(fp);
|
||||
return open(dev, flags);
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
fclose(fp);
|
||||
|
|
Loading…
Reference in a new issue