Fix booting messages wrapped over two different lines:

    Starting bluetooth
    bluetoothd

    Stopping bluetooth
    /usr/libexec/bluetooth/bluetoothd

Also reworked whitespace (removed some empty lines).

Signed-off-by: Javier Viguera <javier.vigu...@digi.com>
---
 meta/recipes-connectivity/bluez5/bluez5/init | 15 ++++++---------
 1 file changed, 6 insertions(+), 9 deletions(-)

diff --git a/meta/recipes-connectivity/bluez5/bluez5/init 
b/meta/recipes-connectivity/bluez5/bluez5/init
index 489e9b9eba33..d7972f2d950b 100644
--- a/meta/recipes-connectivity/bluez5/bluez5/init
+++ b/meta/recipes-connectivity/bluez5/bluez5/init
@@ -21,25 +21,22 @@ set -e
 
 case $1 in
   start)
-       echo "Starting $DESC"
-
+       echo -n "Starting $DESC: "
        if test "$BLUETOOTH_ENABLED" = 0; then
-               echo "disabled. see /etc/default/bluetooth"
+               echo "disabled (see /etc/default/bluetooth)."
                exit 0
        fi
-
        start-stop-daemon --start --background $SSD_OPTIONS
-       echo "${DAEMON##*/}"
-
+       echo "${DAEMON##*/}."
   ;;
   stop)
-       echo "Stopping $DESC"
+       echo -n "Stopping $DESC: "
        if test "$BLUETOOTH_ENABLED" = 0; then
-               echo "disabled."
+               echo "disabled (see /etc/default/bluetooth)."
                exit 0
        fi
        start-stop-daemon --stop $SSD_OPTIONS
-       echo "${DAEMON}"
+       echo "${DAEMON##*/}."
   ;;
   restart|force-reload)
        $0 stop
-- 
_______________________________________________
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core

Reply via email to