1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-16 10:20:30 +00:00

Add the ACPI Toshiba extras driver (hotkeys, LCD backlight, video output,

forced fan control, and CPU throttling).

Submitted by:	Hiroyuki Aizu <aizu@navi.org>
This commit is contained in:
Nate Lawson 2004-01-11 19:18:38 +00:00
parent 0f2f05821a
commit 4fd3a4fdd2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=124385
3 changed files with 14 additions and 0 deletions

View File

@ -168,6 +168,7 @@ geom/geom_mbr.c standard
geom/geom_mbr_enc.c standard
i386/acpica/OsdEnvironment.c optional acpi
i386/acpica/acpi_machdep.c optional acpi
i386/acpica/acpi_toshiba.c optional acpi_toshiba acpi
i386/acpica/acpi_wakeup.c optional acpi
acpi_wakecode.h optional acpi \
dependency "$S/i386/acpica/acpi_wakecode.S" \

View File

@ -443,6 +443,10 @@ options ACPI_MAX_THREADS=1
#!options ACPI_NO_SEMAPHORES
#!options ACPICA_PEDANTIC
# ACPI Toshiba Extras (LCD backlight/brightness, video output, etc.)
#
device acpi_toshiba
# DRM options:
# mgadrm: AGP Matrox G200, G400, G450, G550
# r128drm: ATI Rage 128

View File

@ -0,0 +1,9 @@
# $FreeBSD$
.PATH: ${.CURDIR}/../../../i386/acpica
KMOD= acpi_toshiba
CFLAGS+= -I${.CURDIR}/../../../contrib/dev/acpica
SRCS= acpi_toshiba.c opt_acpi.h device_if.h bus_if.h
.include <bsd.kmod.mk>