Commit 2d62f488 authored by Adrian Hunter's avatar Adrian Hunter Committed by Artem Bityutskiy

do_mounts: allow UBI root device name

Similarly to MTD devices, allow UBI devices.
Signed-off-by: default avatarAdrian Hunter <ext-adrian.hunter@nokia.com>
parent 4ee6afd3
......@@ -372,7 +372,8 @@ void __init prepare_namespace(void)
if (saved_root_name[0]) {
root_device_name = saved_root_name;
if (!strncmp(root_device_name, "mtd", 3)) {
if (!strncmp(root_device_name, "mtd", 3) ||
!strncmp(root_device_name, "ubi", 3)) {
mount_block_root(root_device_name, root_mountflags);
goto out;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment