projects
/
15.05
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
124e025
)
add missing givepin file
author
Felix Fietkau
<nbd@openwrt.org>
Fri, 29 Jul 2005 14:06:42 +0000
(14:06 +0000)
committer
Felix Fietkau
<nbd@openwrt.org>
Fri, 29 Jul 2005 14:06:42 +0000
(14:06 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1574
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
package/bluez-utils/files/givepin
[new file with mode: 0644]
patch
|
blob
diff --git a/package/bluez-utils/files/givepin
b/package/bluez-utils/files/givepin
new file mode 100644
(file)
index 0000000..
e52a338
--- /dev/null
+++ b/
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