summaryrefslogtreecommitdiffstats
path: root/package/ti-uim
diff options
context:
space:
mode:
authorAlexandre Belloni <alexandre.belloni@free-electrons.com>2013-12-08 12:30:17 +0100
committerPeter Korsgaard <peter@korsgaard.com>2013-12-16 22:53:44 +0100
commit07a4accf5d743b5274108de8dfc32f58af077b43 (patch)
treea13a58eaed01ff87cf007612cad9562e435bf30f /package/ti-uim
parentae6e4febf6e9a853f0a4158649731bfe52a1d0e0 (diff)
ti-uim: Add new package
[Peter: wrap help text, use full git hash, fix file header, drop license file] Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/ti-uim')
-rw-r--r--package/ti-uim/Config.in8
-rw-r--r--package/ti-uim/ti-uim.mk20
2 files changed, 28 insertions, 0 deletions
diff --git a/package/ti-uim/Config.in b/package/ti-uim/Config.in
new file mode 100644
index 000000000..451aad139
--- /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 000000000..b49818004
--- /dev/null
+++ b/package/ti-uim/ti-uim.mk
@@ -0,0 +1,20 @@
+################################################################################
+#
+# ti-uim
+#
+################################################################################
+
+TI_UIM_VERSION = c73894456df5def97111cb33d2106b684b8b7959
+TI_UIM_SITE = git://gitorious.org/uim/uim.git
+TI_UIM_LICENSE = GPLv2+
+
+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))