From 0858e63569b44c260a0f3c4178952b59e3837926 Mon Sep 17 00:00:00 2001 From: Christopher Roy Bratusek Date: Sun, 5 May 2019 20:51:09 +0200 Subject: [PATCH] external_sd init.d script: change log messages --- Full/system/etc/init.d/external_sd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Full/system/etc/init.d/external_sd b/Full/system/etc/init.d/external_sd index d4c11b4..509b8db 100755 --- a/Full/system/etc/init.d/external_sd +++ b/Full/system/etc/init.d/external_sd @@ -6,7 +6,7 @@ echo "external_sd init script" until [ `getprop sys.boot_completed`. = 1. ]; do sleep 1; done if getprop ro.build.characteristics | grep -q nosdcard; then - echo ">> no SD Card found" + echo ">> no SD Card Slot" exit 0 else media_rw=$(grep "^/dev/block.*/mnt/media_rw" /proc/mounts \ @@ -16,7 +16,7 @@ else fi if [[ -d ${storage} ]]; then - echo ">> SD Card found" + echo ">> SD Card inserted" echo ">> storage: \"${storage}\"" if [[ -e /external_sd ]]; then @@ -38,5 +38,5 @@ if [[ -d ${storage} ]]; then mount -oro,remount / fi else - echo ">> no SD Card found" + echo ">> no SD Card inserted" fi