/lib/bilibop/disk is in bilibop-common 0.5.0.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 | #!/bin/sh
# Output the underlying disk name of the root filesystem or of the
# file/device/directory given as argument.
set -e
. /lib/bilibop/common.sh
get_udev_root
physical_hard_disk ${1}
|