From patchwork Sun Dec 8 11:30:17 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexandre Belloni X-Patchwork-Id: 298788 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id C6A8C2C0082 for ; Sun, 8 Dec 2013 22:30:38 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id E034288B70; Sun, 8 Dec 2013 11:30:37 +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 zt8hRmCvtF7q; Sun, 8 Dec 2013 11:30:36 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 33DFB865A7; Sun, 8 Dec 2013 11:30:36 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id B36691C1081 for ; Sun, 8 Dec 2013 11:30:34 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id AD0BF8A934 for ; Sun, 8 Dec 2013 11:30:34 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 7uOmLAD3m0aJ for ; Sun, 8 Dec 2013 11:30:33 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.free-electrons.com (top.free-electrons.com [176.31.233.9]) by whitealder.osuosl.org (Postfix) with ESMTP id 94B908A8C3 for ; Sun, 8 Dec 2013 11:30:33 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 106) id 7AE86898; Sun, 8 Dec 2013 12:30:36 +0100 (CET) Received: from localhost (128-79-216-6.hfc.dyn.abo.bbox.fr [128.79.216.6]) by mail.free-electrons.com (Postfix) with ESMTPSA id 22BBF7C1; Sun, 8 Dec 2013 12:30:26 +0100 (CET) From: Alexandre Belloni To: buildroot@busybox.net Date: Sun, 8 Dec 2013 12:30:17 +0100 Message-Id: <1386502217-2761-1-git-send-email-alexandre.belloni@free-electrons.com> X-Mailer: git-send-email 1.8.3.2 Subject: [Buildroot] [PATCH] ti-uim: Add new package X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 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-bounces@busybox.net Signed-off-by: Alexandre Belloni --- package/Config.in | 1 + package/ti-uim/Config.in | 8 ++++++++ package/ti-uim/ti-uim.mk | 21 +++++++++++++++++++++ 3 files changed, 30 insertions(+) create mode 100644 package/ti-uim/Config.in create mode 100644 package/ti-uim/ti-uim.mk diff --git a/package/Config.in b/package/Config.in index a7ab4ea9d535..8947fc1dc686 100644 --- a/package/Config.in +++ b/package/Config.in @@ -329,6 +329,7 @@ source "package/sunxi-mali/Config.in" source "package/sunxi-mali-prop/Config.in" source "package/sysstat/Config.in" source "package/ti-gfx/Config.in" +source "package/ti-uim/Config.in" source "package/ti-utils/Config.in" source "package/uboot-tools/Config.in" source "package/udev/Config.in" diff --git a/package/ti-uim/Config.in b/package/ti-uim/Config.in new file mode 100644 index 000000000000..0e2183d0cbc8 --- /dev/null +++ b/package/ti-uim/Config.in @@ -0,0 +1,8 @@ +config BR2_PACKAGE_TI_UIM + bool "ti-uim" + help + User Mode Initialization Manager for TI wl12xx connectivity chip shared + transport drivers. This daemon is needed to get the btwilink driver to + work. + + http://omappedia.org/wiki/Device_Driver_Interface_of_WiLink_Solution diff --git a/package/ti-uim/ti-uim.mk b/package/ti-uim/ti-uim.mk new file mode 100644 index 000000000000..86e8b882a8b2 --- /dev/null +++ b/package/ti-uim/ti-uim.mk @@ -0,0 +1,21 @@ +############################################################# +# +# ti-uim +# +############################################################# + +TI_UIM_VERSION = c738944 +TI_UIM_SITE = git://gitorious.org/uim/uim.git +TI_UIM_LICENSE = GPLv2+ +TI_UIM_LICENSE_FILES = uim.c + +define TI_UIM_BUILD_CMDS + $(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS) +endef + +define TI_UIM_INSTALL_TARGET_CMDS + $(INSTALL) -m 0755 -D $(@D)/uim \ + $(TARGET_DIR)/usr/sbin/uim +endef + +$(eval $(generic-package))