Revision: 5794 Author: pebender Date: Sat Nov 7 05:00:08 2009 Log: - Added the starting of bluetoothd (if present) to the bluetooth init script.
http://code.google.com/p/minimyth/source/detail?r=5794 Modified: /trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init/bluetooth.pm ======================================= --- /trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init/bluetooth.pm Thu Nov 5 18:59:16 2009 +++ /trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init/bluetooth.pm Sat Nov 7 05:00:08 2009 @@ -30,18 +30,22 @@ return 0; } } + + if (-e '/usr/sbin/bluetoothd') + { + system(qq(/usr/sbin/bluetoothd)); + } } return 1; } - sub stop { my $self = shift; my $minimyth = shift; - $minimyth->application_stop('hciconfg', "stopping hciconfig ..."); + $minimyth->application_stop('bluetoothd', "stopping bluetoothd..."); return 1; } --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "minimyth-commits" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/minimyth-commits?hl=en -~----------~----~----~----~------~----~------~--~---
