[libs] zaptel-1.4.x: Added hotplug script to create correct Zaptel device nodes (hotplug's autocreate does the wrong thing).

git-svn-id: svn://svn.openwrt.org/openwrt/packages@26262 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
cshore 2011-03-22 00:35:30 +00:00
parent 6e8caf174a
commit 57ddea3d46
2 changed files with 11 additions and 0 deletions

View File

@ -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

View File

@ -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