add missing givepin file

SVN-Revision: 1574
master
Felix Fietkau 19 years ago
parent 80fa31a204
commit e405ecc5c4
  1. 14
      openwrt/package/bluez-utils/files/givepin

@ -0,0 +1,14 @@
#!/bin/sh
# Write bluetooth PIN number here:
pin=
if [ -z "$pin" ]; then
msg="Set bluetooth PIN in file $0"
logger -p user.err "$msg"
for i in /dev/pts/* ; do
[ -w $i ] && echo "$msg" > $i
done
else
echo "PIN:$pin"
fi
Loading…
Cancel
Save