From 1a57eb9b7cc5e772d1090a23c51fdd4a01ec5df0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rafa=C5=82=20Mi=C5=82ecki?= Date: Wed, 17 Dec 2014 20:33:28 +0100 Subject: [PATCH] block: allow mounting UBIFS partition as extroot MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Rafał Miłecki --- block.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/block.c b/block.c index 68cfd5a..107ba64 100644 --- a/block.c +++ b/block.c @@ -598,6 +598,10 @@ static void check_filesystem(struct blkid_struct_probe *pr) struct stat statbuf; char *e2fsck = "/usr/sbin/e2fsck"; + /* UBIFS does not need stuff like fsck */ + if (!strncmp(pr->id->name, "ubifs", 5)) + return; + if (strncmp(pr->id->name, "ext", 3)) { ERROR("check_filesystem: %s is not supported\n", pr->id->name); return; @@ -974,7 +978,8 @@ static int mount_extroot(char *cfg) pr = find_block_info(m->uuid, m->label, m->device); } if (pr) { - if (strncmp(pr->id->name, "ext", 3)) { + if (strncmp(pr->id->name, "ext", 3) && + strncmp(pr->id->name, "ubifs", 5)) { ERROR("extroot: %s is not supported, try ext4\n", pr->id->name); return -1; } -- 2.11.0