From patchwork Sat Jul 2 12:24:02 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andy Shevchenko X-Patchwork-Id: 643473 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3rhXWw6qGKz9t0G for ; Sat, 2 Jul 2016 22:24:12 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 5B4D69308F; Sat, 2 Jul 2016 12:24:10 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id DTgmRHuUmRcr; Sat, 2 Jul 2016 12:24:08 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id C53FB8B3AB; Sat, 2 Jul 2016 12:24:08 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id 9310A1CEA8D for ; Sat, 2 Jul 2016 12:24:07 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 8461A8901A for ; Sat, 2 Jul 2016 12:24:07 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 9wBrnWiCg26d for ; Sat, 2 Jul 2016 12:24:05 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by fraxinus.osuosl.org (Postfix) with ESMTP id 7B98689018 for ; Sat, 2 Jul 2016 12:24:05 +0000 (UTC) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga102.jf.intel.com with ESMTP; 02 Jul 2016 05:24:05 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos; i="5.26,562,1459839600"; d="scan'208"; a="1009458626" Received: from black.fi.intel.com ([10.237.72.93]) by orsmga002.jf.intel.com with ESMTP; 02 Jul 2016 05:24:04 -0700 Received: by black.fi.intel.com (Postfix, from userid 1003) id 228DAF0; Sat, 2 Jul 2016 15:24:03 +0300 (EEST) From: Andy Shevchenko To: buildroot@buildroot.org Date: Sat, 2 Jul 2016 15:24:02 +0300 Message-Id: <1467462242-35261-1-git-send-email-andriy.shevchenko@linux.intel.com> X-Mailer: git-send-email 2.8.1 Cc: Andy Shevchenko Subject: [Buildroot] [PATCH v1 1/1] package: Add hid-replay package X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Package provides a tool to record HID events and replay them. Signed-off-by: Andy Shevchenko --- package/Config.in | 1 + package/hid-replay/Config.in | 6 ++++++ package/hid-replay/hid-replay.mk | 12 ++++++++++++ 3 files changed, 19 insertions(+) create mode 100644 package/hid-replay/Config.in create mode 100644 package/hid-replay/hid-replay.mk diff --git a/package/Config.in b/package/Config.in index 9d668bf..5d0114d 100644 --- a/package/Config.in +++ b/package/Config.in @@ -80,6 +80,7 @@ menu "Debugging, profiling and benchmark" source "package/fio/Config.in" source "package/gdb/Config.in" source "package/google-breakpad/Config.in" + source "package/hid-replay/Config.in" source "package/iozone/Config.in" source "package/kexec/Config.in" source "package/kexec-lite/Config.in" diff --git a/package/hid-replay/Config.in b/package/hid-replay/Config.in new file mode 100644 index 0000000..512a626 --- /dev/null +++ b/package/hid-replay/Config.in @@ -0,0 +1,6 @@ +config BR2_PACKAGE_HID_REPLAY + bool "hid-replay" + help + HID recorder for Linux + + http://bentiss.github.io/hid-replay-docs/ diff --git a/package/hid-replay/hid-replay.mk b/package/hid-replay/hid-replay.mk new file mode 100644 index 0000000..0e021de --- /dev/null +++ b/package/hid-replay/hid-replay.mk @@ -0,0 +1,12 @@ +################################################################################ +# +# hid-replay +# +################################################################################ + +HID_REPLAY_VERSION = master +HID_REPLAY_SITE = https://github.com/bentiss/hid-replay.git +HID_REPLAY_SITE_METHOD = git +HID_REPLAY_AUTORECONF = YES + +$(eval $(autotools-package))