bluez-tools: Add package bluezetools
Signed-off-by: Karl Osterseher <karli_o@gmx.at>
This commit is contained in:
parent
c5431a7a98
commit
f6e8fdedaa
3 changed files with 95 additions and 0 deletions
55
utils/bluez-tools/Makefile
Normal file
55
utils/bluez-tools/Makefile
Normal file
|
@ -0,0 +1,55 @@
|
|||
#
|
||||
# Copyright (C) 2021 Karl Osterseher <karli_o@gmx.at>
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=bluez-tools
|
||||
PKG_VERSION:=20201025.f653217
|
||||
PKG_RELEASE:=$(AUTORELEASE)
|
||||
|
||||
PKG_MAINTAINER:=Karl Osterseher <karli_o@gmx.at>
|
||||
|
||||
PKG_LICENSE:=GPL-2.0-only
|
||||
PKG_LICENSE_FILES:=COPYING
|
||||
|
||||
PKG_SOURCE_PROTO:=git
|
||||
PKG_SOURCE_URL:=https://github.com/khvzak/bluez-tools.git
|
||||
PKG_SOURCE_DATE:=2020-10-25
|
||||
PKG_SOURCE_VERSION:=f65321736475429316f07ee94ec0deac8e46ec4a
|
||||
PKG_MIRROR_HASH:=a0a7856738fcee12df8894239608d8cc4a7af92574d9bdb5a0b68a8a5455214b
|
||||
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/bluez-tools-$(PKG_VERSION)
|
||||
|
||||
PKG_FIXUP:=autoreconf
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/bluez-tools
|
||||
SECTION:=Utilities
|
||||
CATEGORY:=Utilities
|
||||
DEPENDS:=+bluez-daemon +glib2
|
||||
TITLE:=Bluetooth tools
|
||||
URL:=https://github.com/khvzak/bluez-tools
|
||||
endef
|
||||
|
||||
define Package/bluez-tools/description
|
||||
Bluetooth tools for bluez daemon. This will install bt-agent only!
|
||||
endef
|
||||
|
||||
define Package/bluez-tools/conffiles
|
||||
/etc/config/btagent
|
||||
endef
|
||||
|
||||
define Package/bluez-tools/install
|
||||
$(INSTALL_DIR) $(1)/etc/init.d
|
||||
$(INSTALL_BIN) ./files/btagent.init $(1)/etc/init.d/btagent
|
||||
$(INSTALL_DIR) $(1)/etc/config
|
||||
$(CP) ./files/btagent.cfg $(1)/etc/config/btagent
|
||||
$(INSTALL_DIR) $(1)/usr/bin
|
||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/bt-agent $(1)/usr/bin/
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,bluez-tools))
|
3
utils/bluez-tools/files/btagent.cfg
Executable file
3
utils/bluez-tools/files/btagent.cfg
Executable file
|
@ -0,0 +1,3 @@
|
|||
config btagent
|
||||
option mac '*'
|
||||
option pin '0000'
|
37
utils/bluez-tools/files/btagent.init
Normal file
37
utils/bluez-tools/files/btagent.init
Normal file
|
@ -0,0 +1,37 @@
|
|||
#!/bin/sh /etc/rc.common
|
||||
|
||||
USE_PROCD=1
|
||||
|
||||
START=90
|
||||
|
||||
SERVICE_NAME=bt-agent
|
||||
SERVICE_PID_FILE=/var/run/$SERVICE_NAME.pid
|
||||
|
||||
DAEMON=/usr/bin/$SERVICE_NAME
|
||||
|
||||
AGENT_PIN_FILE=/tmp/btagent.cfg
|
||||
AGENT_CAPABILITIES=NoInputNoOutput
|
||||
|
||||
handle_bt_agent() {
|
||||
local config="$1"
|
||||
local custom="$2"
|
||||
|
||||
local macAdr
|
||||
local pinCode
|
||||
config_get macAdr "$config" mac
|
||||
config_get pinCode "$config" pin
|
||||
echo "$macAdr, $pinCode" >> $AGENT_PIN_FILE
|
||||
}
|
||||
|
||||
start_service()
|
||||
{
|
||||
config_load btagent
|
||||
config_foreach handle_bt_agent btagent
|
||||
|
||||
procd_open_instance
|
||||
procd_set_param command "$DAEMON"
|
||||
procd_append_param command "-c" "$AGENT_CAPABILITIES"
|
||||
procd_append_param command "-p" "$AGENT_PIN_FILE"
|
||||
procd_set_param pidfile $SERVICE_PID_FILE
|
||||
procd_close_instance
|
||||
}
|
Loading…
Reference in a new issue