[Mod] First commit

This commit is contained in:
2022-10-31 22:18:58 +08:00
commit 1c8a3d9709
13090 changed files with 526733 additions and 0 deletions

8
package/ti-uim/Config.in Normal file
View File

@ -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

View File

@ -0,0 +1,3 @@
# Locally computed
sha256 da8a66968f4bf99366ab2b63baf358d937a6b1a5636ef6179c3aa7c852cbd1b2 ti-uim-a0236bc252e6484835ce266ae4a50b361f6a902d.tar.gz
sha256 4e39276507524f938459b05d061ae77562f3f85926fe73027cfcac259cb03d0e uim.h

21
package/ti-uim/ti-uim.mk Normal file
View File

@ -0,0 +1,21 @@
################################################################################
#
# ti-uim
#
################################################################################
TI_UIM_VERSION = a0236bc252e6484835ce266ae4a50b361f6a902d
TI_UIM_SITE = $(call github,96boards,uim,$(TI_UIM_VERSION))
TI_UIM_LICENSE = GPL-2.0+
TI_UIM_LICENSE_FILES = uim.h
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))