Author: pebender
Date: Mon May 11 09:52:27 2009
New Revision: 4744
Modified:
trunk/gar-minimyth/html/minimyth/document-changelog.txt
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init/conf.pm
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/rc.pl
Log:
- Moved init/modules_automatic.pm so that it starts later in the init
process.
- Now init/modules_automatic.pm is called after minimyth.pm is
fetched.
- Now users can more easily modify kernel module parameters by
adding/removing/modifying files in /etc/modprobe.conf
- Now that the drivers required to boot are compiled into the kernel
there should be no need to load hardware modules so early.
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 May 11
09:52:27 2009
@@ -1,7 +1,7 @@
MiniMyth Changelog
--------------------------------------------------------------------------------
-Changes since 66 (2009-05-10):
+Changes since 66 (2009-05-11):
Current MythTV versions
MythTV 0.20-softpad: version 0.20.2.softpad, release-0-20-fixes branch
svn 16082 and
@@ -25,13 +25,20 @@
conveying the state of init between running programs.
- Changed init/dhcp.pm and init/conf/MM_DHCP so that the use the init
state directoy.
+ - Moved init/modules_automatic.pm so that it starts later in the init
process.
+ - Now init/modules_automatic.pm is called after minimyth.pm is
+ fetched.
+ - Now users can more easily modify kernel module parameters by
+ adding/removing/modifying files in /etc/modprobe.conf
+ - Now that the drivers required to boot are compiled into the
kernel
+ there should be no need to load hardware modules so early.
Improved MythV slave backend support.
- Added support for DVB USB devices that make use of the
dvb-usb-dib0700
driver.
- Added firmware autodetection for the Hauppauge WinTV NOVA-TD:
- - USB VendorId:ProductId = 2040:9580.
- - Firmware filename = dvb-usb-dib0700-1.20.fw.
+ - USB VendorId:ProductId = 2040:9580.
+ - Firmware filename = dvb-usb-dib0700-1.20.fw.
Improved MythVideo support.
- Added tmdb.pl script to 0.20.2.softpad, 0.20.2 and 0.21.0.
Modified:
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init/conf.pm
==============================================================================
---
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init/conf.pm
(original)
+++
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init/conf.pm
Mon May 11 09:52:27 2009
@@ -133,6 +133,21 @@
}
}
+ # Load the automatic kernel modules.
+ $minimyth->package_require(q(init::modules_automatic));
+ if ($minimyth->package_member_require(q(init::modules_automatic),
q(start)))
+ {
+ eval
+ {
+ init::modules_automatic->start($minimyth) || ($success = 0);
+ };
+ if ($@)
+ {
+ $minimyth->message_output('err', qq($@));
+ $success = 0;
+ }
+ }
+
# Enable configuration auto-detection udev rules for firmware.
if (opendir(DIR, '/lib/udev/rules.d'))
{
Modified:
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/rc.pl
==============================================================================
---
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/rc.pl
(original)
+++
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/rc.pl
Mon May 11 09:52:27 2009
@@ -16,7 +16,6 @@
'ld',
'loopback',
'dhcp',
- 'modules_automatic',
'conf',
'modules_manual',
'log'
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---