diff options
author | scottl <scottl@FreeBSD.org> | 2003-05-31 11:19:11 +0000 |
---|---|---|
committer | scottl <scottl@FreeBSD.org> | 2003-05-31 11:19:11 +0000 |
commit | 049e6a81c83ff5402bd64c65dc6f591e7bfb003e (patch) | |
tree | d142fda882c3e7afe71d33a6e228762dfb74b45a /sys/boot | |
parent | 0cb8f83a58154d726388c5d4e1baff564c2565b6 (diff) | |
download | FreeBSD-src-049e6a81c83ff5402bd64c65dc6f591e7bfb003e.zip FreeBSD-src-049e6a81c83ff5402bd64c65dc6f591e7bfb003e.tar.gz |
Flag when ACPI has been disabled by the user so that sysinstall can do
something with it.
Diffstat (limited to 'sys/boot')
-rw-r--r-- | sys/boot/forth/beastie.4th | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/boot/forth/beastie.4th b/sys/boot/forth/beastie.4th index 96c4a04..96b7524 100644 --- a/sys/boot/forth/beastie.4th +++ b/sys/boot/forth/beastie.4th @@ -173,6 +173,7 @@ set-current acpienabled? if s" acpi_load" unsetenv s" 1" s" hint.acpi.0.disabled" setenv + s" 1" s" loader.acpi_disabled_by_user" setenv else s" YES" s" acpi_load" setenv s" 0" s" hint.acpi.0.disabled" setenv @@ -183,6 +184,7 @@ set-current s" arch-i386" environment? if s" acpi_load" unsetenv s" 1" s" hint.acpi.0.disabled" setenv + s" 1" s" loader.acpi_disabled_by_user" setenv then s" 0" s" hw.ata.ata_dma" setenv s" 0" s" hw.ata.atapi_dma" setenv |