1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-05 10:41:18 +02:00

add missing givepin file

SVN-Revision: 1574
This commit is contained in:
Felix Fietkau 2005-07-29 14:06:42 +00:00
parent 80fa31a204
commit e405ecc5c4

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