mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
do_mounts: allow UBI root device name
Similarly to MTD devices, allow UBI devices. Signed-off-by: Adrian Hunter <ext-adrian.hunter@nokia.com>
This commit is contained in:
parent
4ee6afd344
commit
2d62f48858
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue