Skip to content

Commit

Permalink
avoid logwrapper calls
Browse files Browse the repository at this point in the history
Logwrapper is useful for debugging, but isn't intended to be
kept on for production devices. Remove it.

Change-Id: Ibfa085de914459acfa1284d9036918edc68bb53b
  • Loading branch information
nickkral committed Oct 25, 2013
1 parent 6aa8931 commit 2f35dde
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions init.mako.bt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ esac

if [$BDADDR == ""]
then
logwrapper /system/bin/hci_qcomm_init -e $PWR_CLASS -vv
/system/bin/hci_qcomm_init -e $PWR_CLASS -vv
else
logwrapper /system/bin/hci_qcomm_init -b $BDADDR -e $PWR_CLASS -vv
/system/bin/hci_qcomm_init -b $BDADDR -e $PWR_CLASS -vv
fi

case $? in
Expand Down
4 changes: 2 additions & 2 deletions init.mako.rc
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ service qcamerasvr /system/bin/mm-qcamera-daemon
user camera
group camera system inet input

service conn_init /system/bin/logwrapper /system/bin/conn_init
service conn_init /system/bin/conn_init
class late_start
user system
group system wifi
Expand All @@ -411,7 +411,7 @@ service qseecomd /system/bin/qseecomd
user system
group system

service diag_mdlog /system/bin/logwrapper /system/bin/diag_mdlog -s 100
service diag_mdlog /system/bin/diag_mdlog -s 100
class late_start
disabled

Expand Down

0 comments on commit 2f35dde

Please sign in to comment.