Now `rublk` is enough for supporting ublk test, not necessary to build miniublk any more. Convert ublk common helpers into ${UBLK_PROG}. Signed-off-by: Ming Lei <ming.lei@xxxxxxxxxx> --- common/ublk | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/common/ublk b/common/ublk index 8278d56..5ccbb50 100644 --- a/common/ublk +++ b/common/ublk @@ -8,19 +8,19 @@ _have_ublk() { _have_driver ublk_drv - _have_src_program miniublk + _have_program ${UBLK_PROG} } _remove_ublk_devices() { - src/miniublk del -a + ${UBLK_PROG} del -a } _get_ublk_dev_state() { - src/miniublk list -n "$1" | grep "state" | awk '{print $11}' + ${UBLK_PROG} list -n "$1" | grep "state" | awk '{print $11}' } _get_ublk_daemon_pid() { - src/miniublk list -n "$1" | grep "pid" | awk '{print $7}' + ${UBLK_PROG} list -n "$1" | grep "pid" | awk '{print $7}' } _init_ublk() { -- 2.41.0