From a144637ff033712bb5b78c082d29615d0d65feb4 Mon Sep 17 00:00:00 2001 From: Sakar Arora Date: Fri, 16 Mar 2018 10:41:01 +0530 Subject: [PATCH] luv-test: Update plymouth command for hiding text luv_message_write was using unsupported plymouth_hide command. Updated it to the correct command as in luv_message_hide. Signed-off-by: Sakar Arora --- meta-luv/recipes-core/luv-test/luv-test/luv-message | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-luv/recipes-core/luv-test/luv-test/luv-message b/meta-luv/recipes-core/luv-test/luv-test/luv-message index 50edf1fee50..fa3f95ad693 100755 --- a/meta-luv/recipes-core/luv-test/luv-test/luv-message +++ b/meta-luv/recipes-core/luv-test/luv-test/luv-message @@ -8,7 +8,7 @@ luv_msg_write() { if [ $# == 2 ]; then sleep $2 - plymouth_hide "$1" + /bin/plymouth hide-message --text="$1" fi echo "$1" >&2