summaryrefslogtreecommitdiff
path: root/recipes-connectivity
diff options
context:
space:
mode:
authorJohn Klug <john.klug@multitech.com>2020-07-22 17:16:02 -0500
committerJohn Klug <john.klug@multitech.com>2020-11-12 09:03:01 -0600
commit51c5cdb1ba10c7a4948ac0f4c92fca1b998fd03b (patch)
tree2a723b4e9a287e1a37e7fdfa0923738da8aa676c /recipes-connectivity
parent3e98006c187213b206ce6036d5f36100f732c589 (diff)
downloadmeta-mlinux-51c5cdb1ba10c7a4948ac0f4c92fca1b998fd03b.tar.gz
meta-mlinux-51c5cdb1ba10c7a4948ac0f4c92fca1b998fd03b.tar.bz2
meta-mlinux-51c5cdb1ba10c7a4948ac0f4c92fca1b998fd03b.zip
BT-Name missing from WiFi BT access point test
Diffstat (limited to 'recipes-connectivity')
-rw-r--r--recipes-connectivity/bluez/bluez5/BT-Name23
1 files changed, 23 insertions, 0 deletions
diff --git a/recipes-connectivity/bluez/bluez5/BT-Name b/recipes-connectivity/bluez/bluez5/BT-Name
new file mode 100644
index 0000000..25c2d9f
--- /dev/null
+++ b/recipes-connectivity/bluez/bluez5/BT-Name
@@ -0,0 +1,23 @@
+diff -Naru orig/etc/init.d/bluetooth new/etc/init.d/bluetooth
+--- orig/etc/init.d/bluetooth 2020-06-12 13:14:37.000000000 -0500
++++ new/etc/init.d/bluetooth 2020-06-29 14:53:56.824235818 -0500
+@@ -16,6 +16,9 @@
+ # FIXME: any of the sourced files may fail if/with syntax errors
+ test -f /etc/default/bluetooth && . /etc/default/bluetooth
+ test -f /etc/default/rcS && . /etc/default/rcS
++DEVID=$(mts-io-sysfs show device-id)
++HOSTNAME=$(uname -n)
++NAME="${HOSTNAME}-${DEVID}"
+
+ set -e
+
+@@ -28,6 +31,9 @@
+ exit 0
+ fi
+
++ if ! grep -q "^Name = ${NAME}$" /etc/bluetooth/main.conf ; then
++ sed -i "s/^Name = .*/Name = ${NAME}/" /etc/bluetooth/main.conf
++ fi
+ start-stop-daemon --start --background $SSD_OPTIONS $MOREOPTIONS
+ sleep 1
+ if [[ -n ${BLUETOOTHCTL_CMD} ]] ; then