tinyramfs/device-helper

45 lines
1.1 KiB
Plaintext
Raw Normal View History

2020-04-12 01:01:02 +05:30
#!/bin/sh -f
#
# create /dev/disk/by-* and /dev/mapper/* symlinks
create_symlink()
{
typ="$1"; sym="$2"
2020-05-13 22:12:30 +05:30
2020-04-12 01:01:02 +05:30
sym="${sym%\"}"
sym="${sym#\"}"
sym="/dev/disk/by-${typ}/${sym}"
2020-04-12 01:01:02 +05:30
mkdir -p "${sym%/*}"
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-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.
while ! _blkid=$(blkid "/dev/${dev_name}"); do
2021-05-11 15:08:51 +05:30
if [ "$((count += 1))" = 10 ]; then
exit 1
else
sleep 1
fi
done
for line in $_blkid; do case "${line%%=*}" in
UUID) create_symlink uuid "${line##*=}" ;;
LABEL) create_symlink label "${line##*=}" ;;
PARTUUID) create_symlink partuuid "${line##*=}" ;;
2020-09-11 01:23:39 +05:30
esac; done