From: Felix Fietkau Date: Fri, 29 Jul 2005 14:06:42 +0000 (+0000) Subject: add missing givepin file X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e405ecc5c4fdfc858ba84d778ac19913cca390e4;p=librecmc%2Flibrecmc.git add missing givepin file SVN-Revision: 1574 --- diff --git a/openwrt/package/bluez-utils/files/givepin b/openwrt/package/bluez-utils/files/givepin new file mode 100644 index 0000000000..e52a3384af --- /dev/null +++ b/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