From: cshore Date: Tue, 22 Mar 2011 00:35:30 +0000 (+0000) Subject: zaptel-1.4.x: Added hotplug script to create correct Zaptel device nodes (hotplug... X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=cb2632743906d76dc610759fb0aa35161314e42b;p=feed%2Ftelephony.git zaptel-1.4.x: Added hotplug script to create correct Zaptel device nodes (hotplug's autocreate does the wrong thing). --- diff --git a/libs/zaptel-1.4.x/Makefile b/libs/zaptel-1.4.x/Makefile index 631d4d7..91f1958 100644 --- a/libs/zaptel-1.4.x/Makefile +++ b/libs/zaptel-1.4.x/Makefile @@ -155,6 +155,8 @@ define Package/zaptel14-util/install $(INSTALL_BIN) $(PKG_BUILD_DIR)/ztmonitor $(1)/usr/bin/ $(INSTALL_BIN) $(PKG_BUILD_DIR)/ztscan $(1)/usr/bin/ $(INSTALL_BIN) $(PKG_BUILD_DIR)/ztspeed $(1)/usr/bin/ + $(INSTALL_DIR) $(1)/etc/hotplug.d/zaptel + $(INSTALL_DATA) ./files/10-create-device-node $(1)/etc/hotplug.d/zaptel/ endef define Package/zaptel14-libtonezone/install diff --git a/libs/zaptel-1.4.x/files/10-create-device-node b/libs/zaptel-1.4.x/files/10-create-device-node new file mode 100644 index 0000000..f49c6c1 --- /dev/null +++ b/libs/zaptel-1.4.x/files/10-create-device-node @@ -0,0 +1,9 @@ +#!/bin/sh + +case "$ACTION" in + add) + /bin/mkdir -p /dev/zap + /bin/mknod -m 0644 /dev/zap/${DEVICENAME#zap} c $MAJOR $MINOR + ;; +esac +