Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
devices: create
/dev/mapper/<logical-volume>
as well
When we create the device node inside the buildroot so far it's very minimal - just `/dev/{vg}-{lv}` with the appopriate major/minor. However when mount runs it will create a mapper device with the same major/minor under `/dev/mapper/{escaped(vg)}-{escaped(lv)}` and use that to mount the actual filesystem. Without this additional device findmnt will not be able to detect the udev attributes of the source (as the source is just missing from /dev). This commit create the right mapper in the same way that we create the non-mapper device node.
- Loading branch information