Author: pebender
Date: Fri Oct 17 14:44:59 2008
New Revision: 3844
Modified:
trunk/gar-minimyth/html/minimyth/document-changelog.txt
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.perl/init/conf/MM_LCDPROC.pm
Log:
- Fixed a bug that caused perl init scripts to fail to detect LCDproc
devices.
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 Fri Oct 17
14:44:59 2008
@@ -89,6 +89,8 @@
- Fixed a bug that caused MythTV 0.21 and trunk to fail to detect
fftw3f.
- Fixed a bug that caused perl init scripts to incorrectly declare mtd
as
missing when when DVD ripping support was enabled.
+ - Fixed a bug that caused perl init scripts to fail to detect LCDproc
+ devices.
- Modified MiniMyth::application_path so that it removed trailing new
line.
- Fixed a bug in MiniMyth::url_file_put that caused MythTV themecache
and
Modified:
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.perl/init/conf/MM_LCDPROC.pm
==============================================================================
---
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.perl/init/conf/MM_LCDPROC.pm
(original)
+++
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.perl/init/conf/MM_LCDPROC.pm
Fri Oct 17 14:44:59 2008
@@ -27,8 +27,8 @@
if ($minimyth->var_get($name) eq 'auto')
{
- my $driver = $minimyth->detect_state_get('audio', 0, 'driver')
|| '';
- my $device = $minimyth->detect_state_get('audio', 0, 'device')
|| '';
+ my $driver = $minimyth->detect_state_get('lcdproc',
0, 'driver') || '';
+ my $device = $minimyth->detect_state_get('lcdproc',
0, 'device') || '';
$minimyth->var_set('MM_LCDPROC_DRIVER', $driver);
$minimyth->var_set('MM_LCDPROC_DEVICE', $device);
}
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---