Author: pebender
Date: Wed May 20 19:10:47 2009
New Revision: 4802
Modified:
trunk/gar-minimyth/html/minimyth/document-changelog.txt
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init/wiimote.pm
Log:
- Changed Wiimote init so that it warns rather than fails when the
bluetooth device is not present.
Modified: trunk/gar-minimyth/html/minimyth/document-changelog.txt
==============================================================================
--- trunk/gar-minimyth/html/minimyth/document-changelog.txt (original)
+++ trunk/gar-minimyth/html/minimyth/document-changelog.txt Wed May 20
19:10:47 2009
@@ -55,6 +55,8 @@
options.
- The LCDproc device is checked for by MM_LIRC_DEVICE.
- Added the MythPhone kernel module to the manual kernel module list.
+ - Changed Wiimote init so that it warns rather than fails when the
+ bluetooth device is not present.
Improved MythV slave backend support.
- Added support for DVB USB devices that make use of the
dvb-usb-dib0700
Modified:
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init/wiimote.pm
==============================================================================
---
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init/wiimote.pm
(original)
+++
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init/wiimote.pm
Wed May 20 19:10:47 2009
@@ -35,8 +35,8 @@
}
if ($#devices < 0)
{
- $minimyth->message_output('err', "no bluetooth device found.");
- return 0;
+ $minimyth->message_output('warn', "no bluetooth device
found.");
+ return 1;
}
my $device_configured = 0;
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---