From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Subject: Re: [PATCH] Add udev rules to start bluetooth on-demand From: Bastien Nocera To: Marcel Holtmann Cc: BlueZ development In-Reply-To: <1245592251.15367.64.camel@violet> References: <1245591547.26486.7101.camel@localhost.localdomain> <1245592251.15367.64.camel@violet> Content-Type: multipart/mixed; boundary="=-U9+Wf3sysj4q4CTvicVm" Date: Sun, 21 Jun 2009 15:05:52 +0100 Message-Id: <1245593152.26486.7156.camel@localhost.localdomain> Mime-Version: 1.0 List-ID: --=-U9+Wf3sysj4q4CTvicVm Content-Type: text/plain Content-Transfer-Encoding: 7bit On Sun, 2009-06-21 at 15:50 +0200, Marcel Holtmann wrote: > Hi Bastien, > > > As discussed in previous mails. > > please name it bluetooth.rules. The daemon is also called bluetoothd and > not bluezd. > > Also you need to have the EXTRA_DIST part in it since _DATA doesn't get > added to the distribution automatically. For all this changes, you have > to check with make distcheck. Fixed version attached --=-U9+Wf3sysj4q4CTvicVm Content-Disposition: attachment; filename="0001-Add-udev-rules-to-start-bluetooth-on-demand.patch" Content-Type: text/x-patch; name="0001-Add-udev-rules-to-start-bluetooth-on-demand.patch"; charset="ISO-8859-1" Content-Transfer-Encoding: 7bit >>From f723fb9f588a987bfaba94cfb2c1acb6c89c926c Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Sun, 21 Jun 2009 14:37:32 +0100 Subject: [PATCH] Add udev rules to start bluetooth on-demand Those rules call bluetoothd --udev when a new dongle is inserted. --- scripts/Makefile.am | 4 +++- scripts/bluetooth.rules | 5 +++++ 2 files changed, 8 insertions(+), 1 deletions(-) create mode 100644 scripts/bluetooth.rules diff --git a/scripts/Makefile.am b/scripts/Makefile.am index 494a9c2..d06f95e 100644 --- a/scripts/Makefile.am +++ b/scripts/Makefile.am @@ -11,6 +11,8 @@ endif if PCMCIARULES rules_DATA += bluetooth-serial.rules endif + +rules_DATA += bluetooth.rules endif if PCMCIARULES @@ -20,7 +22,7 @@ udev_SCRIPTS = bluetooth_serial endif EXTRA_DIST = bluetooth.init bluetooth.default bluetooth-hid2hci.rules \ - bluetooth-serial.rules bluetooth_serial + bluetooth-serial.rules bluetooth_serial bluetooth.rules MAINTAINERCLEANFILES = Makefile.in diff --git a/scripts/bluetooth.rules b/scripts/bluetooth.rules new file mode 100644 index 0000000..f3034b5 --- /dev/null +++ b/scripts/bluetooth.rules @@ -0,0 +1,5 @@ +# Run helper every time a Bluetooth device appears +# On remove actions, bluetoothd should go away by itself + +ACTION=="add", SUBSYSTEM=="bluetooth", RUN+="/usr/sbin/bluetoothd --udev" + -- 1.6.2.2 --=-U9+Wf3sysj4q4CTvicVm--