diff options
Diffstat (limited to 'util-linux/volume_id/get_devname.c')
-rw-r--r-- | util-linux/volume_id/get_devname.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/util-linux/volume_id/get_devname.c b/util-linux/volume_id/get_devname.c index 6b97df1..b64d28c 100644 --- a/util-linux/volume_id/get_devname.c +++ b/util-linux/volume_id/get_devname.c @@ -107,7 +107,11 @@ uuidcache_check_device(const char *device, int depth UNUSED_PARAM) { /* note: this check rejects links to devices, among other nodes */ - if (!S_ISBLK(statbuf->st_mode)) + if (!S_ISBLK(statbuf->st_mode) +#if ENABLE_FEATURE_VOLUMEID_UBIFS + && !(S_ISCHR(statbuf->st_mode) && strncmp(bb_basename(device), "ubi", 3) == 0) +#endif + ) return TRUE; /* Users report that mucking with floppies (especially non-present |