Commit 07a4accf authored by Alexandre Belloni's avatar Alexandre Belloni Committed by Peter Korsgaard
Browse files

ti-uim: Add new package



[Peter: wrap help text, use full git hash, fix file header, drop license file]
Signed-off-by: default avatarAlexandre Belloni <alexandre.belloni@free-electrons.com>
Signed-off-by: default avatarPeter Korsgaard <peter@korsgaard.com>
parent ae6e4feb
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -330,6 +330,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"
+8 −0
Original line number Diff line number Diff line
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
+20 −0
Original line number Diff line number Diff line
################################################################################
#
# 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))