Author: pebender
Date: Mon May 11 20:15:43 2009
New Revision: 4751

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_manual.pm so that it starts earlier in the init  
process.
       - Now init/modules_manual.pm so that it is called just after running
         init/modules_automatic.pm and determining  
MM_HARDWARE_KERNEL_MODULES.



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  
20:15:43 2009
@@ -35,6 +35,9 @@
              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.
+    - Moved init/modules_manual.pm so that it starts earlier in the init  
process.
+          - Now init/modules_manual.pm so that it is called just after  
running
+            init/modules_automatic.pm and determining  
MM_HARDWARE_KERNEL_MODULES.

  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/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 20:15:43 2009
@@ -207,6 +207,22 @@
          }
      }

+    # Load the manual kernel modules.
+    $self->_run($minimyth, 'MM_HARDWARE_KERNEL_MODULES');
+    $minimyth->package_require(q(init::modules_manual));
+    if ($minimyth->package_member_require(q(init::modules_manual),  
q(start)))
+    {
+        eval
+        {
+            init::modules_manual->start($minimyth) || ($success = 0);
+        };
+        if ($@)
+        {
+            $minimyth->message_output('err', qq($@));
+            $success = 0;
+        }
+    }
+
      # (Re)process all the configuration variables.
      $minimyth->message_output('info', "processing configuration file ...");
      $minimyth->var_clear();

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 20:15:43 2009
@@ -17,7 +17,6 @@
      'loopback',
      'dhcp',
      'conf',
-    'modules_manual',
      'log'
  );
  my @script_list_kill_halt =

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to