]> code.ossystems Code Review - openembedded-core.git/commit
initrdscripts/init-live.sh: fix mounts w/ spaces fail to move to real rootfs
authorArsalan H. Awan <Arsalan_Awan@mentor.com>
Thu, 28 Jun 2018 14:16:36 +0000 (19:16 +0500)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 28 Jun 2018 22:33:55 +0000 (23:33 +0100)
commit6f8f984ba363f764e83290b972ec31a90aad1603
tree015bf78578c7756651491bb7accc68b9e2340582
parent01071c5d524a878d9de4814196cba2f15739796e
initrdscripts/init-live.sh: fix mounts w/ spaces fail to move to real rootfs

When there are spaces in the mount points of devices e.g.:

 a partition mounted at "/run/media/My Root Partition-sda1",

the initrd fails to move such mount points over to the
corresponding directories at /media under the real root filesystem,
and the mount points would appear at the same location as they were
mounted on when detected by initrd, for example:
 here: "/run/media/My Root Partition-sda1"
 instead of here: "/media/My Root Partition-sda1"

This causes issues such as:

  * The disks/partitions cannot be formated with any filesystem
    using e.g. mkfs.ext4 or mke2fs in general. When tried to do so
    by making sure the device is not mounted, it failed with
    errors such as:

    > /dev/sda1 is apparently in use by the system; will not make a
      filesystem here!
    > /dev/sda1: Device or resource busy while setting up superblock

  * The read/write operations become extremely slow. e.g. Under testing,
    it took approx. 2 hours just to copy 700 MB of data to the partition,
    and it took more than 40 minutes to delete that data from it.
    Same operations took under 5 minutes on a partition that had no
    spaces in its mount point (or that was successfully moved to real
    root by initrd and appeared under /media instead of /run/media).

This commit fixes such issues by quoting the arguments of failing mount
move commands and by parsing OCT or HEX encoded special characters
such as spaces to ASCII charecters in the mount points as kernel
populates the procfs like so.

Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-core/initrdscripts/files/init-live.sh