Changeset 430 in MondoRescue for trunk/mindi/rootfs/sbin


Ignore:
Timestamp:
Mar 1, 2006, 10:21:34 AM (18 years ago)
Author:
andree
Message:

Load module via82cxxx first in InsertEssentialModules() to get IDE DMA
working for 2.6 kernels with VIA chipsets.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/mindi/rootfs/sbin/init

    r372 r430  
    348348
    349349InsertEssentialModules() {
     350#   Load the VIA IDE module first thing if it exists (requires ide-core).
     351#   This is to ensure that DMA is working for VIA chipsets with 2.6 kernels.
     352    for module in /ide-core.ko /via82cxxx.ko; do
     353        [ -f "$module" ] && MyInsmod $module > /dev/null 2> /dev/null
     354    done
     355#   Then load the remaining modules in normal (i.e. arbitrary) order.
    350356    for j in 1 2 3 4 5 ; do
    351357        for i in `ls /*.*o* 2> /dev/null` ; do
Note: See TracChangeset for help on using the changeset viewer.