2020-04-12 01:01:02 +05:30
|
|
|
#!/bin/sh -f
|
|
|
|
#
|
|
|
|
# create /dev/disk/by-* and /dev/mapper/* symlinks
|
|
|
|
|
|
|
|
create_symlink()
|
|
|
|
{
|
2020-05-13 22:12:30 +05:30
|
|
|
dir="$1"; sym="$2"
|
|
|
|
|
2020-04-12 01:01:02 +05:30
|
|
|
sym="${sym%\"}"
|
|
|
|
sym="${sym#\"}"
|
2020-05-07 17:36:34 +05:30
|
|
|
sym="${dir}/${sym}"
|
2020-04-12 01:01:02 +05:30
|
|
|
|
2020-05-07 17:36:34 +05:30
|
|
|
mkdir -p "$dir"
|
2020-05-19 09:59:40 +05:30
|
|
|
ln -s "../../${dev_name}" "$sym"
|
2020-04-12 01:01:02 +05:30
|
|
|
}
|
|
|
|
|
2021-05-10 17:04:51 +05:30
|
|
|
# DEVPATH is part of uevent which is exported to environment by device manager.
|
2020-09-11 01:23:39 +05:30
|
|
|
[ -b "/dev/${dev_name=${DEVPATH##*/}}" ] || exit 1
|
|
|
|
|
|
|
|
exec > /dev/null 2>&1
|
2020-05-07 17:36:34 +05:30
|
|
|
|
2020-09-11 01:23:39 +05:30
|
|
|
read -r dm_name < "/sys/block/${dev_name}/dm/name" && {
|
|
|
|
mkdir -p /dev/mapper
|
|
|
|
ln -sf "../${dev_name}" "/dev/mapper/${dm_name:?}"
|
|
|
|
}
|
2020-07-16 00:53:12 +05:30
|
|
|
|
2020-09-11 01:23:39 +05:30
|
|
|
command -v blkid || exit 0
|
2020-07-16 00:53:12 +05:30
|
|
|
|
2021-05-10 17:04:51 +05:30
|
|
|
# Race condition may occur if uevent arrives faster(isn't that a kernel bug!?)
|
|
|
|
# than the kernel initializes device. This prevents blkid to fetch data from
|
|
|
|
# device. To fix this, we simply waiting until blkid is succeeded.
|
2021-05-10 13:54:59 +05:30
|
|
|
while ! blkid "/dev/${dev_name}"; do
|
|
|
|
if [ "$((count += 1))" = 30 ]; then
|
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
sleep 1
|
|
|
|
fi
|
|
|
|
done
|
2020-05-07 17:36:34 +05:30
|
|
|
|
2020-09-11 01:23:39 +05:30
|
|
|
for line in $(blkid "/dev/${dev_name}"); do case "${line%%=*}" in
|
|
|
|
UUID) create_symlink /dev/disk/by-uuid "${line##*=}" ;;
|
|
|
|
LABEL) create_symlink /dev/disk/by-label "${line##*=}" ;;
|
|
|
|
PARTUUID) create_symlink /dev/disk/by-partuuid "${line##*=}" ;;
|
|
|
|
esac; done
|