Skip to content

Commit

Permalink
Add logcat2hvc service to redirect logcat to hvc
Browse files Browse the repository at this point in the history
Logcat2hvc service redirects logcat message to HVC (Hyperv Console)
device, this is a debug purpose service for CrosVM Celadon Windows.

Signed-off-by: Yadong Qi <[email protected]>
Tracked-On: OAM-114661
  • Loading branch information
YadongQi authored and Zhong,Fangjian committed Jan 8, 2024
1 parent 4947af2 commit 03f8bbc
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 0 deletions.
21 changes: 21 additions & 0 deletions logcat2hvc/Android.bp
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
//
// Copyright (C) 2023 Intel Corporation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at //
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//

sh_binary {
name: "logcat2hvc",
src: "logcat2hvc",
init_rc: ["logcat2hvc.rc"],
required: ["logcat2hvc"],
}
12 changes: 12 additions & 0 deletions logcat2hvc/logcat2hvc
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#! /system/bin/sh

# Start logcat then if logcat exits, restart from the most recently
# logged log, such that duplicates are not sent when restarting.

[ ! -c /dev/hvc0 ] && exit -1

logcat "$@"

while true; do
logcat -T1 "$@"
done
8 changes: 8 additions & 0 deletions logcat2hvc/logcat2hvc.rc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
service logcat2hvc /system/bin/logcat2hvc -b all -v threadtime -f /dev/hvc0 *:V
group system
oneshot

#on property:logd.ready=true

on init
start logcat2hvc

0 comments on commit 03f8bbc

Please sign in to comment.