Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

#!/bin/sh
#
# Show device mapper dependent / underlying devices.  This is useful for
# looking up the /dev/sd* devices associated with a dm or multipath device. 
#

if [ "$1" = "-h" ] ; then
	echo "Show device mapper dependent (underlying) devices."
	exit
fi

dev="$VDEV_PATH"

# If the VDEV path is a symlink, resolve it to a real device
if [ -L "$dev" ] ; then
	dev=$(readlink "$dev")
fi

dev=$(basename "$dev")
val=""
if [ -d "/sys/class/block/$dev/slaves" ] ; then
	# ls -C: output in columns, no newlines
	val=$(ls -C "/sys/class/block/$dev/slaves")

	# ls -C will print two spaces between files; change to one space.
	val=$(echo "$val" | sed -r 's/[[:blank:]]+/ /g')
fi

echo "dm-deps=$val"