[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:
parent
6e8caf174a
commit
57ddea3d46
@ -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
|
||||
|
9
libs/zaptel-1.4.x/files/10-create-device-node
Normal file
9
libs/zaptel-1.4.x/files/10-create-device-node
Normal 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
|
||||
|
Loading…
x
Reference in New Issue
Block a user