mirror of
https://github.com/novatiq/packages.git
synced 2026-04-30 07:28:39 +01:00
bluez: add new package
This merges & obsoletes bluez-libs & bluez-utils from old packages feed. Signed-off-by: Nicolas Thill <nico@openwrt.org>
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user