1
0
mirror of https://github.com/DigitalDevices/octonet.git synced 2023-10-10 11:36:52 +00:00
This commit is contained in:
mvoelkel
2015-08-05 18:52:25 +02:00
commit 68a450d10a
43 changed files with 6239 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
config BR2_PACKAGE_OCTONET
bool "octonet"
default n
help
http://www.linuxtv.org

View File

@@ -0,0 +1,18 @@
OCTONET_VERSION = 0.1
OCTONET_SOURCE =
OCTONET_SITE = ../dddvb/apps/octonet
OCTONET_SITE_METHOD = local
OCTONET_INSTALL_TARGET = YES
define OCTONET_BUILD_CMDS
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
endef
define OCTONET_INSTALL_TARGET_CMDS
$(INSTALL) -m 0755 -D $(@D)/ddflash $(TARGET_DIR)/usr/bin/ddflash
$(INSTALL) -m 0755 -D $(@D)/octokey $(TARGET_DIR)/usr/bin/octokey
$(INSTALL) -m 0755 -D $(@D)/octonet $(TARGET_DIR)/usr/bin/octonet
$(INSTALL) -m 0755 -D $(@D)/ddtest $(TARGET_DIR)/usr/bin/ddtest
endef
$(eval $(generic-package))