From: Daniel Dickinson Date: Tue, 22 Mar 2011 00:35:30 +0000 (+0000) Subject: [libs] zaptel-1.4.x: Added hotplug script to create correct Zaptel device nodes ... X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=42518fa59fa1fff2444ccbc7711e1268f297268a;p=openwrt%2Fsvn-archive%2Farchive.git [libs] zaptel-1.4.x: Added hotplug script to create correct Zaptel device nodes (hotplug's autocreate does the wrong thing). SVN-Revision: 26262 --- diff --git a/libs/zaptel-1.4.x/Makefile b/libs/zaptel-1.4.x/Makefile index 631d4d7c06..91f19583ee 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 0000000000..f49c6c1e44 --- /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 +