diff options
author | Matthew Garrett <mjg@redhat.com> | 2012-01-31 13:19:20 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2012-03-30 04:09:24 -0400 |
commit | d1ff4b1cdbabb9ab9813f3d6e1cbec42cc5d6ed8 (patch) | |
tree | 19a0a4440742bce34e1da3ffcc5377acaf22896a /drivers/acpi/Makefile | |
parent | f2d4753fbd4d15c65d6ba48167aa83916ddbe518 (diff) | |
download | talos-op-linux-d1ff4b1cdbabb9ab9813f3d6e1cbec42cc5d6ed8.tar.gz talos-op-linux-d1ff4b1cdbabb9ab9813f3d6e1cbec42cc5d6ed8.zip |
ACPI: Add support for exposing BGRT data
ACPI 5.0 adds the BGRT, a table that contains a pointer to the firmware
boot splash and associated metadata. This simple driver exposes it via
/sys/firmware/acpi in order to allow bootsplash applications to draw their
splash around the firmware image and reduce the number of jarring graphical
transitions during boot.
Signed-off-by: Matthew Garrett <mjg@redhat.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/Makefile')
-rw-r--r-- | drivers/acpi/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/acpi/Makefile b/drivers/acpi/Makefile index 1567028d2038..47199e2a9130 100644 --- a/drivers/acpi/Makefile +++ b/drivers/acpi/Makefile @@ -62,6 +62,7 @@ obj-$(CONFIG_ACPI_SBS) += sbs.o obj-$(CONFIG_ACPI_HED) += hed.o obj-$(CONFIG_ACPI_EC_DEBUGFS) += ec_sys.o obj-$(CONFIG_ACPI_CUSTOM_METHOD)+= custom_method.o +obj-$(CONFIG_ACPI_BGRT) += bgrt.o # processor has its own "processor." module_param namespace processor-y := processor_driver.o processor_throttling.o |