From: daniel Date: Mon, 12 May 2014 19:48:13 +0000 (+0200) Subject: block: detect /dev/ubiblock* X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=01e8989b9354bb85f6abd06a3c76617206c79002;p=project%2Ffstools.git block: detect /dev/ubiblock* --- diff --git a/block.c b/block.c index 9122ebf..a1609b4 100644 --- a/block.c +++ b/block.c @@ -474,8 +474,10 @@ static int _cache_load(const char *path) static void cache_load(int mtd) { - if (mtd) + if (mtd) { _cache_load("/dev/mtdblock*"); + _cache_load("/dev/ubiblock*"); + } _cache_load("/dev/mmcblk*"); _cache_load("/dev/sd*"); _cache_load("/dev/hd*");