#160329 BK

#160405 /etc/init.d/rc.services runs this only if executable...
#190814 leave as executable...
#[ -x etc/init.d/bluetooth ] && chmod 644 etc/init.d/bluetooth

#20201007 dunfell oe...
BTEXE="$(find . -type f -name bluetoothd | head -n 1)"
if [ "$BTEXE" ];then
 mkdir -p usr/sbin
 if [ ! -e usr/sbin/bluetoothd ];then
  ln -s -r ${BTEXE} usr/sbin/bluetoothd
 fi
fi
