[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]

Re: How do ou get modules like ac and barrerty to load at boot time?



Hey Guys,

If you take a look at /etc/rc.d/init.d/acpid, you will notice that only the 'button' module is loaded at startup.

If you add the other modules (found at /lib/modules/`uname -r`/kernel/drivers/acpi) before starting the acpid then everything should work quite nicely.

Of course you must specify acpi=on as a kernel option.

rgds

Sean Craig

Bill Nottingham wrote:

Joshua Legbandt (jtlegbandt earthlink net) said:

Thinking about it further, I was going to write an initscript that
detected whether acpi=on was passed to the kernel via grub and then load
the appropraite acpi modules for my system.




if [ -d /proc/acpi ]; then
  for module in /lib/modules/uname -r/kernel/drivers/acpi/* ; do
        insmod $module
  done
fi

Bill


--
fedora-test-list mailing list
fedora-test-list redhat com
http://www.redhat.com/mailman/listinfo/fedora-test-list






[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]