diff options
author | 2007-12-05 19:17:12 +0000 | |
---|---|---|
committer | 2007-12-05 19:17:12 +0000 | |
commit | f63689ad036c9494caeef224b6fa15d822bf038e (patch) | |
tree | 756e40b458b7951d21eff99aeb6eb1ff7ea4afcc /sys/dev/acpi/files.acpi | |
parent | log positive events ('OK', 'within') with LOG_INFO instead of LOG_ALERT; (diff) | |
download | wireguard-openbsd-f63689ad036c9494caeef224b6fa15d822bf038e.tar.xz wireguard-openbsd-f63689ad036c9494caeef224b6fa15d822bf038e.zip |
Hang acpi(4) below bios(4) instead of mainbus(4). This lets us move acpi(4)
before pcibios(4), and then.... if acpi(4) attaches, skip pcibios(4) since
it messes the machines up. Fixes claudio's HP dl320 G5, and almost assuredly
others.
ok kettenis
Diffstat (limited to 'sys/dev/acpi/files.acpi')
-rw-r--r-- | sys/dev/acpi/files.acpi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/acpi/files.acpi b/sys/dev/acpi/files.acpi index 542edb2bb2c..c24ade21fc5 100644 --- a/sys/dev/acpi/files.acpi +++ b/sys/dev/acpi/files.acpi @@ -1,11 +1,11 @@ -# $OpenBSD: files.acpi,v 1.15 2007/05/31 17:49:16 gwk Exp $ +# $OpenBSD: files.acpi,v 1.16 2007/12/05 19:17:13 deraadt Exp $ # # Config file and device description for machine-independent ACPI code. # Included by ports that need it. define acpi {} device acpi -attach acpi at mainbus +attach acpi at bios file dev/acpi/acpi.c acpi needs-flag file dev/acpi/acpiutil.c acpi file dev/acpi/dsdt.c acpi |