mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-06-13 15:03:58 +03:00
Introduce a sysinfo driver that can be instantiated from the device, which will provide information from the EEPROM found on all TQ-Systems SoMs. Signed-off-by: Nora Schiffer <nora.schiffer@ew.tq-group.com> Signed-off-by: Max Merchel <Max.Merchel@ew.tq-group.com> Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Alexander Feilke <alexander.feilke@ew.tq-group.com>
13 lines
441 B
Makefile
13 lines
441 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2017
|
|
# Mario Six, Guntermann & Drunck GmbH, mario.six@gdsys.cc
|
|
obj-y += sysinfo-uclass.o
|
|
obj-$(CONFIG_SYSINFO_GAZERBEAM) += gazerbeam.o
|
|
obj-$(CONFIG_SYSINFO_GPIO) += gpio.o
|
|
obj-$(CONFIG_SYSINFO_IOT2050) += iot2050.o
|
|
obj-$(CONFIG_SYSINFO_RCAR3) += rcar3.o
|
|
obj-$(CONFIG_SYSINFO_SANDBOX) += sandbox.o
|
|
obj-$(CONFIG_SYSINFO_SMBIOS) += smbios.o
|
|
obj-$(CONFIG_SYSINFO_TQ_EEPROM) += tq_eeprom.o
|