]> git.karo-electronics.de Git - karo-tx-linux.git/commit
UBI: do not abort init when ubi.mtd devices cannot be found
authorMike Frysinger <vapier@gentoo.org>
Tue, 23 Apr 2013 01:40:16 +0000 (21:40 -0400)
committerArtem Bityutskiy <artem.bityutskiy@linux.intel.com>
Thu, 16 May 2013 09:37:31 +0000 (12:37 +0300)
commit1557b9e1cb669f90696c863fbf525a1033022c10
treec8efe722765d1db7dc3e97a452fe1633d1292a04
parent6fde0f307cdc3cdf7a11a13c5335e11627f9ef24
UBI: do not abort init when ubi.mtd devices cannot be found

The current ubi.mtd parsing logic will warn & continue on when attaching
the specified mtd device fails (for any reason).  It doesn't however skip
things when the specified mtd device can't be opened.

This scenario can be hit in a couple of different ways such as:
 - build NAND controller driver as a module
 - build UBI into the kernel
 - include ubi.mtd on the kernel command line
 - boot the system
 - MTD devices don't exist, so UBI init fails

This is problematic because failing init means the entire UBI layer is
unavailable until you reboot and modify the kernel command line.  If
we just warn and continue on, /dev/ubi_ctrl is available for userland
to add UBI volumes on the fly once it loads the NAND driver.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
drivers/mtd/ubi/build.c