mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2025-12-10 07:44:50 +01:00
-------------------------------------------------------------------------------
* 5fec171 Cleanup
* 966870d Merge ubus.c file
* 3f60a47 Sort packets by connection id
* e488e92 Add audio_tx bus
* 583df94 Fix spelling error
* 2c8ff4f Add audio_tx bus
-------------------------------------------------------------------------------
commit 5fec171d3e42f4f2fc42661e19cced08a1d9a6cf
Author: Jonas Höglund <jonas.hoglund@embeddednation.com>
Date: 2018-01-04 17:54:25 +0100
Cleanup
Base directory -> /
src/endpt.c | 142 ++++++++++++++++++++++++++----------------------------------
1 file changed, 62 insertions(+), 80 deletions(-)
-------------------------------------------------------------------------------
commit 966870d95db6d0e7e5932251031ce1621e9b3f39
Author: Jonas Höglund <jonas.hoglund@embeddednation.com>
Date: 2018-01-04 16:56:37 +0100
Merge ubus.c file
Base directory -> /
src/Makefile | 2 +-
src/endpt.c | 505 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
src/ubus.c | 512 -----------------------------------------------------------
src/ubus.h | 6 -
4 files changed, 489 insertions(+), 536 deletions(-)
-------------------------------------------------------------------------------
commit 3f60a47e41f941aa0b0402f41aab606f66652cc0
Author: Jonas Höglund <jonas.hoglund@embeddednation.com>
Date: 2018-01-04 15:55:39 +0100
Sort packets by connection id
Base directory -> /
src/endpt.c | 36 +++++++++++++++++-------------------
src/ubus.c | 46 +++++++++++++++++++++++++++++++++-------------
2 files changed, 50 insertions(+), 32 deletions(-)
-------------------------------------------------------------------------------
commit e488e92e030104233b02e6b7c6f2791997237025
Author: Jonas Höglund <jonas.hoglund@embeddednation.com>
Date: 2017-12-22 11:32:45 +0100
Add audio_tx bus
Base directory -> /
src/endpt.c | 4 +-
src/ubus.c | 122 +++++++++++++++++++-----------------------------------------
2 files changed, 40 insertions(+), 86 deletions(-)
-------------------------------------------------------------------------------
commit 583df94ac848ae0ba04b47f3ff5635266d188211
Author: Jonas Höglund <jonas.hoglund@embeddednation.com>
Date: 2017-12-22 10:53:35 +0100
Fix spelling error
Base directory -> /
src/ubus.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
-------------------------------------------------------------------------------
commit 2c8ff4faa92a19358dddd093761a9114727c5873
Author: Jonas Höglund <jonas.hoglund@embeddednation.com>
Date: 2017-12-21 17:32:23 +0100
Add audio_tx bus
Base directory -> /
src/endpt.c | 8 +++++---
src/ubus.c | 15 +++++++++------
2 files changed, 14 insertions(+), 9 deletions(-)
-------------------------------------------------------------------------------
44 lines
988 B
Makefile
44 lines
988 B
Makefile
#
|
|
# Copyright (C) 2006-2010 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_RELEASE:=1
|
|
PKG_VERSION:=0.1
|
|
PKG_SOURCE_URL:=git@private.inteno.se:endptmngr
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_VERSION:=5fec171d3e42f4f2fc42661e19cced08a1d9a6cf
|
|
PKG_NAME:=endptmngr
|
|
|
|
RSTRIP:=true
|
|
export BUILD_DIR
|
|
|
|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/endptmngr
|
|
CATEGORY:=Utilities
|
|
TITLE:=Brcmslic
|
|
URL:=
|
|
DEPENDS:= +libubox +ubus +libpicoevent
|
|
endef
|
|
|
|
define Package/endptmngr/description
|
|
endptmngr
|
|
endef
|
|
|
|
define Package/endptmngr/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_DIR) $(1)/etc/init.d/
|
|
cp $(PKG_BUILD_DIR)/files/etc/init.d/* $(1)/etc/init.d/
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/endptmngr $(1)/usr/sbin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,endptmngr))
|