diff options
author | obrien <obrien@FreeBSD.org> | 2002-08-09 05:21:01 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-08-09 05:21:01 +0000 |
commit | 3cb4683ef0cbeb7bd180725b85f03ee47ea7ea7c (patch) | |
tree | 8264e7d931d68f6b2260a90048145cf0048cb807 /sys/boot | |
parent | 96dbcef3fc3c8de696782113fa580a19b96ecb7f (diff) | |
download | FreeBSD-src-3cb4683ef0cbeb7bd180725b85f03ee47ea7ea7c.zip FreeBSD-src-3cb4683ef0cbeb7bd180725b85f03ee47ea7ea7c.tar.gz |
Don't auto load ACPI -- it causes trouble with my laptop and is TOTALLY
undocumented how to control its loading and queries to freebsd-current
go unanswered.
Diffstat (limited to 'sys/boot')
-rw-r--r-- | sys/boot/i386/libi386/i386_module.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/sys/boot/i386/libi386/i386_module.c b/sys/boot/i386/libi386/i386_module.c index 5c29aee..a51a488 100644 --- a/sys/boot/i386/libi386/i386_module.c +++ b/sys/boot/i386/libi386/i386_module.c @@ -47,13 +47,5 @@ i386_autoload(void) /* XXX use PnP to locate stuff here */ - /* autoload ACPI support */ - /* XXX should be in 4th keyed off acpi_load */ - if ((getenv("acpi_load") && !getenv("hint.acpi.0.disable"))) { - error = mod_load("acpi", NULL, 0, NULL); - if (error != 0) - printf("ACPI autoload failed - %s\n", strerror(error)); - } - return(0); } |