Author: pebender
Date: Thu Jun 11 21:53:24 2009
New Revision: 4929
Modified:
trunk/gar-minimyth/html/minimyth/document-changelog.txt
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init/conf/MM_LIRC.pm
Log:
- Fixed MM_LIRC.pm so the uinput kernel module is not loaded as a result
of MM_LIRC_FETCH_LIRCMD_CONF='no'.
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 Thu Jun 11
21:53:24 2009
@@ -27,6 +27,8 @@
Fixed bugs
- Patched irserver to use the lircd FIFOs new location:
/var/run/lirc/lircd.
+ - Fixed MM_LIRC.pm so the uinput kernel module is not loaded as a
result
+ of MM_LIRC_FETCH_LIRCMD_CONF='no'.
Removed packages
Removed kernel-2.6.26/linux.
Modified:
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init/conf/MM_LIRC.pm
==============================================================================
---
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init/conf/MM_LIRC.pm
(original)
+++
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init/conf/MM_LIRC.pm
Thu Jun 11 21:53:24 2009
@@ -436,7 +436,7 @@
{
push(@kernel_modules,
$minimyth->var_get('MM_LIRC_KERNEL_MODULE'));
}
- if ($minimyth->var_get('MM_LIRC_FETCH_LIRCMD_CONF'))
+ if ($minimyth->var_get('MM_LIRC_FETCH_LIRCMD_CONF') eq 'yes')
{
push(@kernel_modules, 'uinput');
}
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---