blob: 8fa943fa8b1357abd357436ff5b4ef4ef8e74974 [file] [log] [blame]
#!/bin/sh
# Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# Log all calls, with arguments, to /var/log/messages
logger -- "$0" "$@"
# Tar up the logs and uuencode them, since feedback needs to text.
base=/home/chronos/user/log
if [ "$1" = "alt" ]; then
base=/tmp/touchpad
mkdir -p $base
fi
# Dump the logs
/opt/google/input/inputcontrol --log --logdir="$base"
tar cf - $(ls -1t $base/touchpad_activity_* | head -n 7 ) \
$(ls -1t $base/cmt_input_events_* | head -n 7 ) 2>/dev/null | \
uuencode -m touchpad_activity_log.tar