Author: pebender
Date: Mon Dec 29 13:24:38 2008
New Revision: 4150
Modified:
trunk/gar-minimyth/html/minimyth/document-changelog.txt
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.sh/init.d/wiimote
Log:
- Fixed a bug that would cause confusing error messages when Wiimotes were
enabled in minimyth.conf but no bluetooth device was 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 Mon Dec 29
13:24:38 2008
@@ -1,7 +1,7 @@
MiniMyth Changelog
--------------------------------------------------------------------------------
-Changes since 62 (2008-12-28):
+Changes since 62 (2008-12-29):
Current MythTV versions
MythTV 0.20-softpad: version 0.20.2.softpad, release-0-20-fixes branch
svn 16082,
@@ -49,6 +49,8 @@
when the perl init scripts were being used.
- Fixed a bug that caused MPlayer configuration to fail when using the
perl init scripts.
+ - Fixed a bug that would cause confusing error messages when Wiimotes
were
+ enabled in minimyth.conf but no bluetooth device was present.
Modified build system
- Enabled building of wmgui in utils/cwiid package.
Modified:
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.sh/init.d/wiimote
==============================================================================
---
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.sh/init.d/wiimote
(original)
+++
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.sh/init.d/wiimote
Mon Dec 29 13:24:38 2008
@@ -18,7 +18,7 @@
mm_message_output info 'starting bluetooth ...'
- devices=`cd /sys/class/bluetooth ; ls -1`
+ devices=`ls -1 /sys/class/bluetooth 2> /dev/null`
if /usr/bin/test -z "${devices}" ; then
mm_message_output err "error: no bluetooth device found."
exit 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
-~----------~----~----~----~------~----~------~--~---